Uses of Interface
org.apache.http.nio.conn.NHttpClientConnectionManager
-
Packages that use NHttpClientConnectionManager Package Description org.apache.http.impl.nio.client Default asynchronous HTTP client implementation.org.apache.http.impl.nio.conn Default implementations of asynchronous client connection management functions. -
-
Uses of NHttpClientConnectionManager in org.apache.http.impl.nio.client
Methods in org.apache.http.impl.nio.client with parameters of type NHttpClientConnectionManager Modifier and Type Method Description static 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.static CloseableHttpPipeliningClient
HttpAsyncClients. createPipelining(NHttpClientConnectionManager connManager)
CreatesCloseableHttpPipeliningClient
instance that supports pipelined request execution.static CloseableHttpPipeliningClient
HttpAsyncClients. createPipelining(NHttpClientConnectionManager connManager, boolean shared)
CreatesCloseableHttpPipeliningClient
instance that supports pipelined request execution.HttpAsyncClientBuilder
HttpAsyncClientBuilder. setConnectionManager(NHttpClientConnectionManager connManager)
AssignsNHttpClientConnectionManager
instance. -
Uses of NHttpClientConnectionManager in org.apache.http.impl.nio.conn
Classes in org.apache.http.impl.nio.conn that implement NHttpClientConnectionManager Modifier and Type Class Description class
PoolingNHttpClientConnectionManager
PoolingNHttpClientConnectionManager
maintains a pool ofNHttpClientConnection
s and is able to service connection requests from multiple execution threads.
-