Uses of Interface
org.apache.http.nio.reactor.SessionRequest
-
Packages that use SessionRequest Package Description org.apache.http.impl.nio.reactor Default implementation of event driven network communication APIs based on Java NIO.org.apache.http.nio.pool Client side connection pools APIs for asynchronous, event driven communication.org.apache.http.nio.reactor Event driven network communication APIs loosely based on Doug Lea's reactor pattern. -
-
Uses of SessionRequest in org.apache.http.impl.nio.reactor
Classes in org.apache.http.impl.nio.reactor that implement SessionRequest Modifier and Type Class Description classSessionRequestImplDefault implementation ofSessionRequest.Methods in org.apache.http.impl.nio.reactor that return SessionRequest Modifier and Type Method Description SessionRequestDefaultConnectingIOReactor. connect(java.net.SocketAddress remoteAddress, java.net.SocketAddress localAddress, java.lang.Object attachment, SessionRequestCallback callback) -
Uses of SessionRequest in org.apache.http.nio.pool
Methods in org.apache.http.nio.pool with parameters of type SessionRequest Modifier and Type Method Description protected voidAbstractNIOConnPool. requestCancelled(SessionRequest request)protected voidAbstractNIOConnPool. requestCompleted(SessionRequest request)protected voidAbstractNIOConnPool. requestFailed(SessionRequest request)protected voidAbstractNIOConnPool. requestTimeout(SessionRequest request) -
Uses of SessionRequest in org.apache.http.nio.reactor
Methods in org.apache.http.nio.reactor that return SessionRequest Modifier and Type Method Description SessionRequestConnectingIOReactor. connect(java.net.SocketAddress remoteAddress, java.net.SocketAddress localAddress, java.lang.Object attachment, SessionRequestCallback callback)Requests a connection to a remote host.Methods in org.apache.http.nio.reactor with parameters of type SessionRequest Modifier and Type Method Description voidSessionRequestCallback. cancelled(SessionRequest request)Triggered on cancellation of aSessionRequest.voidSessionRequestCallback. completed(SessionRequest request)Triggered on successful completion of aSessionRequest.voidSessionRequestCallback. failed(SessionRequest request)Triggered on unsuccessful completion aSessionRequest.voidSessionRequestCallback. timeout(SessionRequest request)Triggered if aSessionRequesttimes out.
-