Skip to content

Latest commit

 

History

History
29 lines (15 loc) · 805 Bytes

README.md

File metadata and controls

29 lines (15 loc) · 805 Bytes

SIMPLSOCKETS

A spinoff library of Dache that provides highly efficient, scalable, simple socket communication.

WEB: http://www.dache.io

EMAIL: [email protected]

NUGET: SimplSockets

INSTALLATION INSTRUCTIONS

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.