Package | Description |
---|---|
org.apache.http.impl.nio.bootstrap |
Embedded non-blocking server and server bootstrap.
|
org.apache.http.impl.nio.reactor |
Default implementation of event driven network communication APIs
based on Java NIO.
|
org.apache.http.nio.reactor |
Event driven network communication APIs loosely based on
Doug Lea's
reactor pattern.
|
Modifier and Type | Field and Description |
---|---|
private ListenerEndpoint |
HttpServer.endpoint |
Modifier and Type | Method and Description |
---|---|
ListenerEndpoint |
HttpServer.getEndpoint() |
Modifier and Type | Class and Description |
---|---|
class |
ListenerEndpointImpl
Default implementation of
ListenerEndpoint . |
Modifier and Type | Method and Description |
---|---|
ListenerEndpoint |
DefaultListeningIOReactor.listen(java.net.SocketAddress address) |
Modifier and Type | Method and Description |
---|---|
java.util.Set<ListenerEndpoint> |
DefaultListeningIOReactor.getEndpoints() |
Modifier and Type | Method and Description |
---|---|
void |
ListenerEndpointClosedCallback.endpointClosed(ListenerEndpoint endpoint) |
Modifier and Type | Method and Description |
---|---|
ListenerEndpoint |
ListeningIOReactor.listen(java.net.SocketAddress address)
Opens a new listener endpoint with the given socket address.
|
Modifier and Type | Method and Description |
---|---|
java.util.Set<ListenerEndpoint> |
ListeningIOReactor.getEndpoints()
Returns a set of endpoints for this I/O reactor.
|