Documentation ¶
Overview ¶
Package websocket provides web socket auto configuration for web/cli application
Index ¶
Constants ¶
View Source
const ( // Profile websocket profile name Profile = "websocket" // All is the string which the Emitter use to send a message to all. All = "" // Broadcast is the string which the Emitter use to send a message to all except this connection. Broadcast = ";to;all;except;me;" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Connection ¶
type Connection struct { at.ContextAware websocket.Connection }
Connection is the websocket connection
type Handler ¶
type Handler interface { OnMessage(data []byte) OnDisconnect() }
Handler is the interface the websocket handler
type Register ¶ added in v0.11.0
type Register func(handler Handler, conn *Connection)
Register is the handler register
Click to show internal directories.
Click to hide internal directories.