Basic C# implementation of a WebSocket server for use with svelte-websocket-stores
Basic Initialization
using EmbedIO;
using SvelteWebSocketServer;
var wsw = new WebSocketWrapper(); // Main entry-point
var ws = new WebServer().WithModule(webSocketWrapper);
Initialization using the WebSocketWrapperListener for easy event handling
using EmbedIO;
using SvelteWebSocketServer;
var wsw = new WebSocketWrapper(); // Main entry-point
var ws = new WebServer().WithModule(webSocketWrapper);
var wswListener = new WebSocketWrapperListener(wsw);
Basic event handling
wsw.OnJsonSet += (scope, id, value) => ...
Event handling using WebSocketWrapperListener
// Raw JSON value with exact ID match
wswListener.AddHandler("some.state", (scope, id, value) => ... );
// Typed value with exact ID match
wswListener.AddHandler<float>("some.state", (scope, match, value) => ... );
// These regex handlers are now deprecated. Please just use wsw.OnJsonSet instead.
// Raw JSON value with regex match
wswListener.AddHandler(new Regex("some\\.(.+?)\\.state"), (scope, id, value) => ... );
// Typed value with regex match
wswListener.AddHandler<float>(new Regex("some\\.(.+?)\\.state"), (scope, match, value) => ... );
All communication between a client and this library is over WebSocket.
All WebSocket messages are interpreted as JSON objects.
The message object is defined as:
type Json = boolean | number | string | { [key: string]: Json } | Json[] | null;
type Message = {
scope: string;
id: string;
value: Json;
}
The field scope
identifies the scope of the client it comes from and limits which clients receive it when coming from the server.
The field id
is the primary identifier and determines where the value
field is stored.
scope
and id
fields from the dictionary holding the respectively typed variables.value
field.scope
field is checked if it is global ("global") or matches the client's local scope (for example "tp1"). If it does not match, the message is discarded.id
field from the dictionary holding the respectively typed stores.value
field.[^1]: This is the behavior expected by this WebSocket server