1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-26 13:25:56 +00:00

add the new neffos StackExchange feature to the type aliases and shortcuts of the websocket subpackage and auto-enable debug mode on websocket MVC application when iris logger's level is set to debug

Former-commit-id: 4d8cb79d01a4172fc1ed7a9b626da0228d902b3c
This commit is contained in:
Gerasimos (Makis) Maropoulos
2019-07-11 12:59:11 +03:00
parent 82d645e3cb
commit 33dfb42d73
10 changed files with 83 additions and 57 deletions

View File

@@ -6,6 +6,7 @@ import (
"github.com/kataras/neffos"
"github.com/kataras/neffos/gobwas"
"github.com/kataras/neffos/gorilla"
"github.com/kataras/neffos/stackexchange/redis"
)
type (
@@ -76,4 +77,16 @@ type (
// when incoming native message then the `Message.Event` is the `OnNativeMessage`,
// native messages are allowed only when an empty namespace("") and its `OnNativeMessage` callback are present.
Message = neffos.Message
// StackExchange is an optional interface
// that can be used to change the way neffos
// sends messages to its clients, i.e
// communication between multiple neffos servers.
//
// See `NewRedisStackExchange` to create a new redis StackExchange.
StackExchange = neffos.StackExchange
// RedisStackExchange is a `neffos.StackExchange` for redis.
RedisStackExchange = redis.StackExchange
// RedisConfig is used on the `NewRedisStackExchange` package-level function.
// Can be used to customize the redis client dialer.
RedisConfig = redis.Config
)