Uses of Interface
org.apache.http.nio.conn.NHttpClientConnectionManager
Packages that use NHttpClientConnectionManager
Package
Description
Default asynchronous HTTP client implementation.
Default implementations of asynchronous client connection
management functions.
-
Uses of NHttpClientConnectionManager in org.apache.http.impl.nio.client
Fields in org.apache.http.impl.nio.client declared as NHttpClientConnectionManagerModifier and TypeFieldDescriptionprivate NHttpClientConnectionManager
HttpAsyncClientBuilder.connManager
private NHttpClientConnectionManager
MinimalHttpAsyncClientBuilder.connManager
private final NHttpClientConnectionManager
AbstractClientExchangeHandler.connmgr
private final NHttpClientConnectionManager
CloseableHttpAsyncClientBase.connmgr
private final NHttpClientConnectionManager
InternalHttpAsyncClient.connmgr
private final NHttpClientConnectionManager
MinimalHttpAsyncClient.connmgr
Methods in org.apache.http.impl.nio.client with parameters of type NHttpClientConnectionManagerModifier and TypeMethodDescriptionstatic CloseableHttpAsyncClient
HttpAsyncClients.createMinimal
(NHttpClientConnectionManager connManager) CreatesCloseableHttpAsyncClient
instance that supports esential HTTP protocol aspects only.static CloseableHttpAsyncClient
HttpAsyncClients.createMinimal
(NHttpClientConnectionManager connManager, boolean shared) CreatesCloseableHttpAsyncClient
instance that supports esential HTTP protocol aspects only.HttpAsyncClients.createPipelining
(NHttpClientConnectionManager connManager) CreatesCloseableHttpPipeliningClient
instance that supports pipelined request execution.HttpAsyncClients.createPipelining
(NHttpClientConnectionManager connManager, boolean shared) CreatesCloseableHttpPipeliningClient
instance that supports pipelined request execution.final HttpAsyncClientBuilder
HttpAsyncClientBuilder.setConnectionManager
(NHttpClientConnectionManager connManager) AssignsNHttpClientConnectionManager
instance.MinimalHttpAsyncClientBuilder.setConnectionManager
(NHttpClientConnectionManager connManager) Constructors in org.apache.http.impl.nio.client with parameters of type NHttpClientConnectionManagerModifierConstructorDescription(package private)
AbstractClientExchangeHandler
(org.apache.commons.logging.Log log, org.apache.http.client.protocol.HttpClientContext localContext, NHttpClientConnectionManager connmgr, org.apache.http.ConnectionReuseStrategy connReuseStrategy, org.apache.http.conn.ConnectionKeepAliveStrategy keepaliveStrategy) CloseableHttpAsyncClientBase
(NHttpClientConnectionManager connmgr, ThreadFactory threadFactory, org.apache.http.nio.NHttpClientEventHandler handler) DefaultClientExchangeHandlerImpl
(org.apache.commons.logging.Log log, org.apache.http.nio.protocol.HttpAsyncRequestProducer requestProducer, org.apache.http.nio.protocol.HttpAsyncResponseConsumer<T> responseConsumer, org.apache.http.client.protocol.HttpClientContext localContext, org.apache.http.concurrent.BasicFuture<T> resultFuture, NHttpClientConnectionManager connmgr, org.apache.http.ConnectionReuseStrategy connReuseStrategy, org.apache.http.conn.ConnectionKeepAliveStrategy keepaliveStrategy, InternalClientExec exec) InternalHttpAsyncClient
(NHttpClientConnectionManager connmgr, org.apache.http.ConnectionReuseStrategy connReuseStrategy, org.apache.http.conn.ConnectionKeepAliveStrategy keepaliveStrategy, ThreadFactory threadFactory, org.apache.http.nio.NHttpClientEventHandler handler, InternalClientExec exec, org.apache.http.config.Lookup<org.apache.http.cookie.CookieSpecProvider> cookieSpecRegistry, org.apache.http.config.Lookup<org.apache.http.auth.AuthSchemeProvider> authSchemeRegistry, org.apache.http.client.CookieStore cookieStore, org.apache.http.client.CredentialsProvider credentialsProvider, org.apache.http.client.config.RequestConfig defaultConfig) MinimalClientExchangeHandlerImpl
(org.apache.commons.logging.Log log, org.apache.http.nio.protocol.HttpAsyncRequestProducer requestProducer, org.apache.http.nio.protocol.HttpAsyncResponseConsumer<T> responseConsumer, org.apache.http.client.protocol.HttpClientContext localContext, org.apache.http.concurrent.BasicFuture<T> resultFuture, NHttpClientConnectionManager connmgr, org.apache.http.protocol.HttpProcessor httpProcessor, org.apache.http.ConnectionReuseStrategy connReuseStrategy, org.apache.http.conn.ConnectionKeepAliveStrategy keepaliveStrategy) MinimalHttpAsyncClient
(NHttpClientConnectionManager connmgr, ThreadFactory threadFactory, org.apache.http.nio.NHttpClientEventHandler eventHandler, org.apache.http.protocol.HttpProcessor httpProcessor, org.apache.http.ConnectionReuseStrategy connReuseStrategy, org.apache.http.conn.ConnectionKeepAliveStrategy keepaliveStrategy) MinimalHttpAsyncClient
(NHttpClientConnectionManager connmgr, org.apache.http.protocol.HttpProcessor httpProcessor) PipeliningClientExchangeHandlerImpl
(org.apache.commons.logging.Log log, org.apache.http.HttpHost target, List<? extends org.apache.http.nio.protocol.HttpAsyncRequestProducer> requestProducers, List<? extends org.apache.http.nio.protocol.HttpAsyncResponseConsumer<T>> responseConsumers, org.apache.http.client.protocol.HttpClientContext localContext, org.apache.http.concurrent.BasicFuture<List<T>> resultFuture, NHttpClientConnectionManager connmgr, org.apache.http.protocol.HttpProcessor httpProcessor, org.apache.http.ConnectionReuseStrategy connReuseStrategy, org.apache.http.conn.ConnectionKeepAliveStrategy keepaliveStrategy) -
Uses of NHttpClientConnectionManager in org.apache.http.impl.nio.conn
Classes in org.apache.http.impl.nio.conn that implement NHttpClientConnectionManagerModifier and TypeClassDescriptionclass
PoolingNHttpClientConnectionManager
maintains a pool ofNHttpClientConnection
s and is able to service connection requests from multiple execution threads.