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
Methods in org.apache.http.impl.client with parameters of type HttpClientConnectionManager Modifier and Type Method Description protected ClientExecChainHttpClientBuilder. 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 ofClientExecChainto be used as a main exec.static CloseableHttpClientHttpClients. createMinimal(HttpClientConnectionManager connManager)CreatesCloseableHttpClientinstance that implements the most basic HTTP protocol support.HttpClientBuilderHttpClientBuilder. setConnectionManager(HttpClientConnectionManager connManager)AssignsHttpClientConnectionManagerinstance.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) -
Uses of HttpClientConnectionManager in org.apache.http.impl.conn
Classes in org.apache.http.impl.conn that implement HttpClientConnectionManager Modifier and Type Class Description classBasicHttpClientConnectionManagerA connection manager for a single connection.classPoolingHttpClientConnectionManagerClientConnectionPoolManagermaintains a pool ofHttpClientConnections 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 HttpClientConnectionManager Constructor Description 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)
-