Documentation
¶
Overview ¶
Package websockets is used to broadcast messages to connected clients
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func BroadCastClientError ¶ added in v1.20.2
func BroadCastClientError(severity, errorType, ip, message string)
BroadCastClientError is a wrapper to broadcast client errors to the web UI
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client is a middleman between the websocket connection and the hub.
type Hub ¶
type Hub struct {
// Registered clients.
Clients map[*Client]bool
// Inbound messages from the clients.
Broadcast chan []byte
// contains filtered or unexported fields
}
Hub maintains the set of active clients and broadcasts messages to the clients.
var ( // MessageHub global MessageHub *Hub )
type WebsocketNotification ¶
WebsocketNotification struct for responses
Click to show internal directories.
Click to hide internal directories.