simple.http.connect |
|
Java Source File Name | Type | Comment |
Configurator.java | Interface | The Configurator object is used to allow custom
socket configurations to be used for the connected clients. |
ConfiguratorFactory.java | Class | The ConfiguratorFactory retrives an instance of
the Configurator interface, used to configure the
connected TCP sockets. |
Connection.java | Class | The Connection manages connections from
ServerSocket 's. |
ConnectionFactory.java | Class | This is used to create a Connection that will
dispatch either HTTP requests or Pipeline objects
to the handler specified. |
DefaultConfigurator.java | Class | The DefaultConfigurator provides generic socket
configuration, that should suit a wide variety of platforms.
This is used by default if no specific implementation is
suggested. |
Processor.java | Class | The Processor object is used in conjunction with
the Connection to accept incoming TCP connections. |
SocketHandler.java | Class | The SocketHandler object is used in conjunction
with the Connection to dispatch Pipeline
objects to a PipelineHandler for incoming TCP
connections. |