A spinoff library of Dache that provides highly efficient, scalable, simple socket communication.
WEB: http://www.dache.io
EMAIL: [email protected]
NUGET: SimplSockets
Just include the DLL in your project (NuGet) and then create a SimplSocket!
To create a client or server:
var client = new SimplSocketClient(...)
var server = new SimplSocketServer(...)
SimplPipelines
is a re-imagining of SimplSockets
that takes the same protocol and applies "piplines" and "async" concepts
throughout; an example client and server is provided, including a "Kestrel" host.