Uses of Interface
org.apache.http.nio.reactor.SessionRequest
Packages that use SessionRequest
Package
Description
Default implementation of event driven network communication APIs
based on Java NIO.
Client side connection pools APIs for asynchronous, event driven
communication.
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 SessionRequestMethods in org.apache.http.impl.nio.reactor that return SessionRequestModifier and TypeMethodDescriptionDefaultConnectingIOReactor.connect(SocketAddress remoteAddress, SocketAddress localAddress, Object attachment, SessionRequestCallback callback) -
Uses of SessionRequest in org.apache.http.nio.pool
Fields in org.apache.http.nio.pool with type parameters of type SessionRequestModifier and TypeFieldDescriptionprivate final Set<SessionRequest>AbstractNIOConnPool.pendingprivate final Map<SessionRequest,BasicFuture<E>> RouteSpecificPool.pendingprivate final AtomicReference<SessionRequest>LeaseRequest.sessionRequestRefMethods in org.apache.http.nio.pool with parameters of type SessionRequestModifier and TypeMethodDescriptionvoidRouteSpecificPool.addPending(SessionRequest request, BasicFuture<E> future) voidLeaseRequest.attachSessionRequest(SessionRequest sessionRequest) voidAbstractNIOConnPool.InternalSessionRequestCallback.cancelled(SessionRequest request) voidRouteSpecificPool.cancelled(SessionRequest request) voidAbstractNIOConnPool.InternalSessionRequestCallback.completed(SessionRequest request) booleanRouteSpecificPool.completed(SessionRequest request, E entry) RouteSpecificPool.createEntry(SessionRequest request, C conn) voidAbstractNIOConnPool.InternalSessionRequestCallback.failed(SessionRequest request) voidRouteSpecificPool.failed(SessionRequest request, Exception ex) private BasicFuture<E>RouteSpecificPool.removeRequest(SessionRequest request) protected voidAbstractNIOConnPool.requestCancelled(SessionRequest request) protected voidAbstractNIOConnPool.requestCompleted(SessionRequest request) protected voidAbstractNIOConnPool.requestFailed(SessionRequest request) protected voidAbstractNIOConnPool.requestTimeout(SessionRequest request) voidAbstractNIOConnPool.InternalSessionRequestCallback.timeout(SessionRequest request) voidRouteSpecificPool.timeout(SessionRequest request) -
Uses of SessionRequest in org.apache.http.nio.reactor
Methods in org.apache.http.nio.reactor that return SessionRequestModifier and TypeMethodDescriptionConnectingIOReactor.connect(SocketAddress remoteAddress, SocketAddress localAddress, Object attachment, SessionRequestCallback callback) Requests a connection to a remote host.Methods in org.apache.http.nio.reactor with parameters of type SessionRequestModifier and TypeMethodDescriptionvoidSessionRequestCallback.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.