|
Class Summary |
| CombinedConnectionProcessor |
The CombinedConnectionProcessor handles the further processing of accepted client connections. |
| ConnectionAcceptor |
The ConnectionAcceptor class is a server thread handling accepting of incoming client connections and simply hands
over these connections to another thread for further processing. |
| ConnectionReader |
ConnectionReader targets three jobs:
Read (partial) data from a established client connection
Invoke the server handler to process the received data
Hand over the response to the ConnectionProcessor for further processing (sending to the client)
|
| EJServerRegistry |
A simple registry wherein all known local EJServers are registered, so that clients lookup an EJServer within the
same JVM. |
| InJvmProcessor |
An In-JVM solution using Piped-Streams to communicate directly with the ServerHandler of a local EJServer. |
| InJvmProcessorFactory |
A simple factory using the EJServerRegistry to look up an existing local
(within the same JVM) EJServer for the given client connection header. |