Uses of Interface
org.apache.http.nio.reactor.ListenerEndpoint
-
Packages that use ListenerEndpoint 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. -
-
Uses of ListenerEndpoint in org.apache.http.impl.nio.bootstrap
Fields in org.apache.http.impl.nio.bootstrap declared as ListenerEndpoint Modifier and Type Field Description private ListenerEndpoint
HttpServer. endpoint
Methods in org.apache.http.impl.nio.bootstrap that return ListenerEndpoint Modifier and Type Method Description ListenerEndpoint
HttpServer. getEndpoint()
-
Uses of ListenerEndpoint in org.apache.http.impl.nio.reactor
Classes in org.apache.http.impl.nio.reactor that implement ListenerEndpoint Modifier and Type Class Description class
ListenerEndpointImpl
Default implementation ofListenerEndpoint
.Methods in org.apache.http.impl.nio.reactor that return ListenerEndpoint Modifier and Type Method Description ListenerEndpoint
DefaultListeningIOReactor. listen(java.net.SocketAddress address)
Methods in org.apache.http.impl.nio.reactor that return types with arguments of type ListenerEndpoint Modifier and Type Method Description java.util.Set<ListenerEndpoint>
DefaultListeningIOReactor. getEndpoints()
Methods in org.apache.http.impl.nio.reactor with parameters of type ListenerEndpoint Modifier and Type Method Description void
ListenerEndpointClosedCallback. endpointClosed(ListenerEndpoint endpoint)
-
Uses of ListenerEndpoint in org.apache.http.nio.reactor
Methods in org.apache.http.nio.reactor that return ListenerEndpoint Modifier and Type Method Description ListenerEndpoint
ListeningIOReactor. listen(java.net.SocketAddress address)
Opens a new listener endpoint with the given socket address.Methods in org.apache.http.nio.reactor that return types with arguments of type ListenerEndpoint Modifier and Type Method Description java.util.Set<ListenerEndpoint>
ListeningIOReactor. getEndpoints()
Returns a set of endpoints for this I/O reactor.
-