feat(websocket): Add TypedRouter WebSocket integration, connection registry, peer tagging and broadcast APIs
This commit is contained in:
@@ -127,3 +127,13 @@ export class ServerNotRunningError extends Error {
|
||||
this.name = 'ServerNotRunningError';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Error thrown when WebSocket configuration is invalid
|
||||
*/
|
||||
export class WebSocketConfigError extends Error {
|
||||
constructor(message: string) {
|
||||
super(message);
|
||||
this.name = 'WebSocketConfigError';
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user