Uses of Interface
org.apache.http.nio.reactor.IOReactor
-
Packages that use IOReactor Package Description 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 IOReactor in org.apache.http.impl.nio.reactor
Classes in org.apache.http.impl.nio.reactor that implement IOReactor Modifier and Type Class Description class
AbstractIOReactor
Generic implementation ofIOReactor
that can used as a subclass for more specialized I/O reactors.class
AbstractMultiworkerIOReactor
Generic implementation ofIOReactor
that can run multipleBaseIOReactor
instances in separate worker threads and distribute newly created I/O sessions equally across those I/O reactors for more optimal resource utilization and better I/O performance.class
BaseIOReactor
Default implementation ofAbstractIOReactor
that serves as a base for more advancedIOReactor
implementations.class
DefaultConnectingIOReactor
Default implementation ofConnectingIOReactor
.class
DefaultListeningIOReactor
Default implementation ofListeningIOReactor
. -
Uses of IOReactor in org.apache.http.nio.reactor
Subinterfaces of IOReactor in org.apache.http.nio.reactor Modifier and Type Interface Description interface
ConnectingIOReactor
ConnectingIOReactor represents an I/O reactor capable of establishing connections to remote hosts.interface
ListeningIOReactor
ListeningIOReactor represents an I/O reactor capable of listening for incoming connections on one or several ports.
-