Uses of Interface
org.apache.http.nio.reactor.SessionRequest

Packages that use SessionRequest
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
 class SessionRequestImpl
          Default implementation of SessionRequest.
 

Methods in org.apache.http.impl.nio.reactor that return SessionRequest
 SessionRequest DefaultConnectingIOReactor.connect(SocketAddress remoteAddress, SocketAddress localAddress, 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
protected  void AbstractNIOConnPool.requestCancelled(SessionRequest request)
           
protected  void AbstractNIOConnPool.requestCompleted(SessionRequest request)
           
protected  void AbstractNIOConnPool.requestFailed(SessionRequest request)
           
protected  void AbstractNIOConnPool.requestTimeout(SessionRequest request)
           
 

Uses of SessionRequest in org.apache.http.nio.reactor
 

Methods in org.apache.http.nio.reactor that return SessionRequest
 SessionRequest ConnectingIOReactor.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 SessionRequest
 void SessionRequestCallback.cancelled(SessionRequest request)
          Triggered on cancellation of a SessionRequest.
 void SessionRequestCallback.completed(SessionRequest request)
          Triggered on successful completion of a SessionRequest.
 void SessionRequestCallback.failed(SessionRequest request)
          Triggered on unsuccessful completion a SessionRequest.
 void SessionRequestCallback.timeout(SessionRequest request)
          Triggered if a SessionRequest times out.
 



Copyright © 2005–2021 The Apache Software Foundation. All rights reserved.