Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Module ¶
type Module interface { // Start 启动模块的方法,接收一个上下文 ctx 作为参数,返回一个可能的错误。 Start(ctx context.Context) error // Close 关闭模块的方法,接收一个上下文 ctx 作为参数。 Close(ctx context.Context) }
Module 接口定义了应用程序中各种模块应该实现的方法。
type WebsocketManager ¶
type WebsocketManager interface { SendMessageToClient(conn *websocket.Conn, event string, data interface{}) error BroadcastMessage(event string, data interface{}) ([]*websocket.Conn, error) // Close 关闭模块的方法,接收一个上下文 ctx 作为参数。 Close(ctx context.Context) }
Module 接口定义了应用程序中各种模块应该实现的方法。
Click to show internal directories.
Click to hide internal directories.