This implementation targets a development environment utilizing Windows 10, Visual Studio 2019, and .NET Core 3.1, relying on the SuperSocket.WebSocket.Server version 2.0.0-beta.8 library. To instantiate a WebSocket server, the WebSocketHostBuilder class is employed. This builder allows for the conf...
Configuring Multiple SuperSocket Servers This implementation demonstrates how to configure and run multiple SuperSocket server instances within a single .NET Core application process. Each server instance operates independently with its own configuration, session handling, and command set. Project S...
In SuperSocket 2.0, connection lifecycle management is divided between two core components. The AppSession class handles individual client connections, while SuperSocketService<TPackage> operates at the server level, orchestrating session pooling, startup routines, and shutdown sequences. Cust...