web

package
v0.4.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 13, 2023 License: MIT Imports: 14 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// EventSendMessage is the event name for new chat messages sent
	EventSendMessage = "send_message"
)

Variables

View Source
var (
	ErrEventNotSupported = errors.New("this event type is not supported")
)

* wsUpgrader is used to upgrade incomming HTTP requests into a persitent websocket connection

Functions

func StartWebUI added in v0.4.0

func StartWebUI(queueWsOutTokenTransactions chan *totra.TokenTransaction)

Types

type Event added in v0.4.0

type Event struct {
	// Type is the message type sent
	Type string `json:"type"`
	// Payload is the data Based on the Type
	Payload json.RawMessage `json:"payload"`
}

Event is the Messages sent over the websocket Used to differ between different actions

type EventHandler added in v0.4.0

type EventHandler func(event Event, c *WsClient) error

EventHandler is a function signature that is used to affect messages on the socket and triggered depending on the type

type SendMessageEvent added in v0.4.0

type SendMessageEvent struct {
	Message string `json:"message"`
	From    string `json:"from"`
}

SendMessageEvent is the payload sent in the send_message event

type WsClient added in v0.4.0

type WsClient struct {
	// contains filtered or unexported fields
}

func NewClient added in v0.4.0

func NewClient(conn net.Conn, hub *WsHub) *WsClient

NewClient is used to initialize a new Client with all required values initialized

type WsHub added in v0.4.0

type WsHub struct {
	sync.RWMutex
	// contains filtered or unexported fields
}

func NewHub added in v0.4.0

func NewHub(queueWsOutTokenTransactions chan *totra.TokenTransaction) *WsHub

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL