Uses of Interface
org.apache.http.conn.HttpClientConnectionManager
-
Packages that use HttpClientConnectionManager Package Description org.apache.http.impl.client Default HTTP client implementation.org.apache.http.impl.conn Default implementations of client connection management functions.org.apache.http.impl.execchain HTTP request execution chain APIs. -
-
Uses of HttpClientConnectionManager in org.apache.http.impl.client
Fields in org.apache.http.impl.client declared as HttpClientConnectionManager Modifier and Type Field Description private HttpClientConnectionManager
IdleConnectionEvictor. connectionManager
private HttpClientConnectionManager
HttpClientBuilder. connManager
private HttpClientConnectionManager
InternalHttpClient. connManager
private HttpClientConnectionManager
MinimalHttpClient. connManager
Methods in org.apache.http.impl.client with parameters of type HttpClientConnectionManager Modifier and Type Method Description protected 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.HttpClientBuilder
HttpClientBuilder. setConnectionManager(HttpClientConnectionManager connManager)
AssignsHttpClientConnectionManager
instance.Constructors in org.apache.http.impl.client with parameters of type HttpClientConnectionManager Constructor Description IdleConnectionEvictor(HttpClientConnectionManager connectionManager, long maxIdleTime, java.util.concurrent.TimeUnit maxIdleTimeUnit)
IdleConnectionEvictor(HttpClientConnectionManager connectionManager, long sleepTime, java.util.concurrent.TimeUnit sleepTimeUnit, long maxIdleTime, java.util.concurrent.TimeUnit maxIdleTimeUnit)
IdleConnectionEvictor(HttpClientConnectionManager connectionManager, java.util.concurrent.ThreadFactory threadFactory, long sleepTime, java.util.concurrent.TimeUnit sleepTimeUnit, long maxIdleTime, java.util.concurrent.TimeUnit maxIdleTimeUnit)
InternalHttpClient(ClientExecChain execChain, HttpClientConnectionManager connManager, HttpRoutePlanner routePlanner, org.apache.http.config.Lookup<CookieSpecProvider> cookieSpecRegistry, org.apache.http.config.Lookup<AuthSchemeProvider> authSchemeRegistry, CookieStore cookieStore, CredentialsProvider credentialsProvider, RequestConfig defaultConfig, java.util.List<java.io.Closeable> closeables)
MinimalHttpClient(HttpClientConnectionManager connManager)
-
Uses of HttpClientConnectionManager in org.apache.http.impl.conn
Classes in org.apache.http.impl.conn that implement HttpClientConnectionManager Modifier and Type Class Description class
BasicHttpClientConnectionManager
A connection manager for a single connection.class
PoolingHttpClientConnectionManager
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
Fields in org.apache.http.impl.execchain declared as HttpClientConnectionManager Modifier and Type Field Description private HttpClientConnectionManager
MainClientExec. connManager
private HttpClientConnectionManager
MinimalClientExec. connManager
private HttpClientConnectionManager
ConnectionHolder. manager
Constructors in org.apache.http.impl.execchain with parameters of type HttpClientConnectionManager Constructor Description ConnectionHolder(org.apache.commons.logging.Log log, HttpClientConnectionManager manager, org.apache.http.HttpClientConnection managedConn)
MainClientExec(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)
-