package neko.net
| .. | |
|---|---|
| Poll | |
| ProxyDetect | |
| ProxySettings | |
| ServerLoop | This class enables you to quickly create a custom server that can serve several clients in parallel. This server is using a single thread and process so the server itself processing is not parallel. Non-blocking sockets are used to ensure that a slow client does not block the others. |
| ThreadRemotingServer | |
| ThreadServer | The ThreadServer can be used to easily create a multithreaded server where each thread polls multiple connections. To use it, at a minimum you must override or rebind clientConnected, readClientMessage, and clientMessage and you must define your Client and Message. |