websocket

package
v0.10.1 Latest Latest
Warning

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

Go to latest
Published: Nov 5, 2018 License: Apache-2.0 Imports: 5 Imported by: 0

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

func HandleConnection

func HandleConnection(constructor HandlerConstructor, conn websocket.Connection)

Types

type Connection

type Connection interface {
	websocket.Connection
}

Connection is the websocket connection

type ConnectionFunc

type ConnectionFunc func(ctx context.Context) websocket.Connection

type Handler

type Handler interface {
	OnMessage(data []byte)
	OnDisconnect()
}

type HandlerConstructor

type HandlerConstructor func(conn Connection) Handler

ConnectionFunc is the websocket connection function

type HandlerFunc

type HandlerFunc func(ctx *web.Context, constructor HandlerConstructor) Connection

ConnectionFunc is the websocket connection function

type Server

type Server struct {
	*websocket.Server
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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