Uses of Interface
org.apache.http.conn.HttpClientConnectionManager
Packages that use HttpClientConnectionManager
Package
Description
Default HTTP client implementation.
Default implementations of client connection management
functions.
HTTP request execution chain APIs.
-
Uses of HttpClientConnectionManager in org.apache.http.impl.client
Methods in org.apache.http.impl.client with parameters of type HttpClientConnectionManagerModifier and TypeMethodDescriptionprotected ClientExecChain
HttpClientBuilder.createMainExec
(org.apache.http.protocol.HttpRequestExecutor requestExec, HttpClientConnectionManager connManager, org.apache.http.ConnectionReuseStrategy reuseStrategy, ConnectionKeepAliveStrategy keepAliveStrategy, org.apache.http.protocol.HttpProcessor proxyHttpProcessor, AuthenticationStrategy targetAuthStrategy, AuthenticationStrategy proxyAuthStrategy, UserTokenHandler userTokenHandler) Produces an instance ofClientExecChain
to be used as a main exec.static CloseableHttpClient
HttpClients.createMinimal
(HttpClientConnectionManager connManager) CreatesCloseableHttpClient
instance that implements the most basic HTTP protocol support.final HttpClientBuilder
HttpClientBuilder.setConnectionManager
(HttpClientConnectionManager connManager) AssignsHttpClientConnectionManager
instance.Constructors in org.apache.http.impl.client with parameters of type HttpClientConnectionManagerModifierConstructorDescriptionIdleConnectionEvictor
(HttpClientConnectionManager connectionManager, long maxIdleTime, TimeUnit maxIdleTimeUnit) IdleConnectionEvictor
(HttpClientConnectionManager connectionManager, long sleepTime, TimeUnit sleepTimeUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) IdleConnectionEvictor
(HttpClientConnectionManager connectionManager, ThreadFactory threadFactory, long sleepTime, TimeUnit sleepTimeUnit, long maxIdleTime, TimeUnit maxIdleTimeUnit) -
Uses of HttpClientConnectionManager in org.apache.http.impl.conn
Classes in org.apache.http.impl.conn that implement HttpClientConnectionManagerModifier and TypeClassDescriptionclass
A connection manager for a single connection.class
ClientConnectionPoolManager
maintains a pool ofHttpClientConnection
s and is able to service connection requests from multiple execution threads. -
Uses of HttpClientConnectionManager in org.apache.http.impl.execchain
Constructors in org.apache.http.impl.execchain with parameters of type HttpClientConnectionManagerModifierConstructorDescriptionMainClientExec
(org.apache.http.protocol.HttpRequestExecutor requestExecutor, HttpClientConnectionManager connManager, org.apache.http.ConnectionReuseStrategy reuseStrategy, ConnectionKeepAliveStrategy keepAliveStrategy, AuthenticationStrategy targetAuthStrategy, AuthenticationStrategy proxyAuthStrategy, UserTokenHandler userTokenHandler) MainClientExec
(org.apache.http.protocol.HttpRequestExecutor requestExecutor, HttpClientConnectionManager connManager, org.apache.http.ConnectionReuseStrategy reuseStrategy, ConnectionKeepAliveStrategy keepAliveStrategy, org.apache.http.protocol.HttpProcessor proxyHttpProcessor, AuthenticationStrategy targetAuthStrategy, AuthenticationStrategy proxyAuthStrategy, UserTokenHandler userTokenHandler) MinimalClientExec
(org.apache.http.protocol.HttpRequestExecutor requestExecutor, HttpClientConnectionManager connManager, org.apache.http.ConnectionReuseStrategy reuseStrategy, ConnectionKeepAliveStrategy keepAliveStrategy)