Uses of Interface
org.apache.http.nio.NHttpConnection
-
Packages that use NHttpConnection Package Description org.apache.http.impl.nio Default implementations of HTTP connections for asynchronous, even driven communication.org.apache.http.nio Core HTTP component APIs and primitives for asynchronous, event driven communication.org.apache.http.nio.protocol Core HTTP protocol execution framework and HTTP protocol handlers for asynchronous, event driven communication. -
-
Uses of NHttpConnection in org.apache.http.impl.nio
Classes in org.apache.http.impl.nio that implement NHttpConnection Modifier and Type Class Description class
DefaultNHttpClientConnection
Default implementation of theNHttpClientConnection
interface.class
DefaultNHttpServerConnection
Default implementation of theNHttpServerConnection
interface.class
NHttpConnectionBase
This class serves as a base for allNHttpConnection
implementations and provides functionality common to both client and server HTTP connections. -
Uses of NHttpConnection in org.apache.http.nio
Classes in org.apache.http.nio with type parameters of type NHttpConnection Modifier and Type Interface Description interface
NHttpConnectionFactory<T extends NHttpConnection>
Factory forNHttpConnection
instances.Subinterfaces of NHttpConnection in org.apache.http.nio Modifier and Type Interface Description interface
NHttpClientConnection
Abstract non-blocking client-side HTTP connection interface.interface
NHttpClientIOTarget
Deprecated.(4.2) no longer usedinterface
NHttpServerConnection
Abstract non-blocking server-side HTTP connection interface.interface
NHttpServerIOTarget
Deprecated.(4.2) no longer used -
Uses of NHttpConnection in org.apache.http.nio.protocol
Methods in org.apache.http.nio.protocol with parameters of type NHttpConnection Modifier and Type Method Description protected void
NHttpHandlerBase. closeConnection(NHttpConnection conn, java.lang.Throwable cause)
Deprecated.void
EventListener. connectionClosed(NHttpConnection conn)
Deprecated.Triggered when a connection has been terminated.void
EventListener. connectionOpen(NHttpConnection conn)
Deprecated.Triggered when a new connection has been established.void
EventListener. connectionTimeout(NHttpConnection conn)
Deprecated.Triggered when a connection has timed out.void
EventListener. fatalIOException(java.io.IOException ex, NHttpConnection conn)
Deprecated.Triggered when an I/O error caused a connection to be terminated.void
EventListener. fatalProtocolException(HttpException ex, NHttpConnection conn)
Deprecated.Triggered when an HTTP protocol error caused a connection to be terminated.private static HttpAsyncClientExchangeHandler
HttpAsyncRequestExecutor. getHandler(NHttpConnection conn)
private static HttpAsyncRequestExecutor.State
HttpAsyncRequestExecutor. getState(NHttpConnection conn)
private HttpAsyncService.State
HttpAsyncService. getState(NHttpConnection conn)
protected void
NHttpHandlerBase. handleTimeout(NHttpConnection conn)
Deprecated.private void
HttpAsyncRequestExecutor. shutdownConnection(NHttpConnection conn)
private void
HttpAsyncService. shutdownConnection(NHttpConnection conn)
protected void
NHttpHandlerBase. shutdownConnection(NHttpConnection conn, java.lang.Throwable cause)
Deprecated.protected void
ThrottlingHttpServiceHandler. shutdownConnection(NHttpConnection conn, java.lang.Throwable cause)
Deprecated.
-