Uses of Interface
org.apache.http.HttpConnection
-
Packages that use HttpConnection Package Description org.apache.http Core HTTP component APIs and primitives.org.apache.http.impl Default implementations of HTTP connections for synchronous, blocking communication.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.protocol Core HTTP protocol execution framework and HTTP protocol handlers for synchronous, blocking communication. -
-
Uses of HttpConnection in org.apache.http
Classes in org.apache.http with type parameters of type HttpConnection Modifier and Type Interface Description interface
HttpConnectionFactory<T extends HttpConnection>
Factory forHttpConnection
instances.Subinterfaces of HttpConnection in org.apache.http Modifier and Type Interface Description interface
HttpClientConnection
A client-side HTTP connection, which can be used for sending requests and receiving responses.interface
HttpInetConnection
An HTTP connection over the Internet Protocol (IP).interface
HttpServerConnection
A server-side HTTP connection, which can be used for receiving requests and sending responses. -
Uses of HttpConnection in org.apache.http.impl
Classes in org.apache.http.impl that implement HttpConnection Modifier and Type Class Description class
AbstractHttpClientConnection
Deprecated.(4.3) useDefaultBHttpClientConnection
class
AbstractHttpServerConnection
Deprecated.(4.3) useDefaultBHttpServerConnection
class
BHttpConnectionBase
This class serves as a base for allHttpConnection
implementations and provides functionality common to both client and server HTTP connections.class
DefaultBHttpClientConnection
Default implementation ofHttpClientConnection
.class
DefaultBHttpServerConnection
Default implementation ofHttpServerConnection
.class
DefaultHttpClientConnection
Deprecated.(4.3) useDefaultBHttpClientConnection
class
DefaultHttpServerConnection
Deprecated.(4.3) useDefaultBHttpServerConnection
class
SocketHttpClientConnection
Deprecated.(4.3) useDefaultBHttpClientConnection
class
SocketHttpServerConnection
Deprecated.Do not use. -
Uses of HttpConnection in org.apache.http.impl.nio
Classes in org.apache.http.impl.nio that implement HttpConnection 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 HttpConnection in org.apache.http.nio
Subinterfaces of HttpConnection 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
NHttpConnection
Abstract non-blocking HTTP connection interface.interface
NHttpServerConnection
Abstract non-blocking server-side HTTP connection interface.interface
NHttpServerIOTarget
Deprecated.(4.2) no longer used -
Uses of HttpConnection in org.apache.http.protocol
Methods in org.apache.http.protocol with type parameters of type HttpConnection Modifier and Type Method Description <T extends HttpConnection>
THttpCoreContext. getConnection(java.lang.Class<T> clazz)
Methods in org.apache.http.protocol that return HttpConnection Modifier and Type Method Description HttpConnection
HttpCoreContext. getConnection()
-