jijiechen / SimpleSocket

A simple .NET socket encapsulation for both server and client usage. Extracted from the EventStore project.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SimpleSocket

This project provides a lightweight and simple interface for TCP socket programming on the .NET platform, it supports both non-secure and secure connections. In most scenarios, socket programming is painful if you want your application stable and fast. This is partially because the complexity of socket and network stream itself. So here it is, this project is for your usage.

If you want to find any patch, please note that this project was extracted from the EventStore code base at revision 6c94358d.

Usage

Please refer to the sample project to know how to interactive with the code.

  • Before you start, implement your own Framer and then you can start.
  • Instantiate a TcpService and handle incomming messages if you want to create a server. You could also build your own mechanism to dispatch different type of messages.
  • Instantiate a TcpConnectionManager and connect to server if you want to use it as a client.

Acknowledgements

EventStore is a great project that help build reliable event based systems. This project is fully extracted from EventStore. Credit goes to the EventStore team.

License

The author of the SimpleSocket project(that is, Jijie Chen) does not add additional restriction on how you can use this project in any forms. Howerver, this source code is extracted from the EventStore codebase, use at your own risk, and please follow the license of EventStore too.

About

A simple .NET socket encapsulation for both server and client usage. Extracted from the EventStore project.


Languages

Language:C# 100.0%