Class | Description |
---|---|
Connection<S extends java.io.Serializable,R extends java.io.Serializable> |
Manages socket connections to minimize common blocking/read/write issues.
|
ConnectionPool<S extends java.io.Serializable,R extends java.io.Serializable> |
Basically just a set of connections, but the waitForEvent() method allows
blocking until one of the connections either receives something or closes.
|
TCPServer<S extends java.io.Serializable,R extends java.io.Serializable> |
A base Server which can be extended to handle many different types of
applications.
|
Exception | Description |
---|---|
BroadcastException |
This exception is thrown when a server tries to broadcast a message and
something goes wrong.
|