Uses of Interface
org.apache.http.pool.ConnPool
Packages that use ConnPool
Package
Description
Default implementations of client side connection pools
for asynchronous, even driven communication.
Default implementations of client side connection pools
for synchronous, blocking communication.
Client side connection pools APIs for asynchronous, event driven
communication.
Core HTTP protocol execution framework and HTTP protocol handlers
for asynchronous, event driven communication.
Client side connection pools APIs for synchronous, blocking
communication.
-
Uses of ConnPool in org.apache.http.impl.nio.pool
Classes in org.apache.http.impl.nio.pool that implement ConnPoolModifier and TypeClassDescriptionclass
A very basicConnPool
implementation that represents a pool of non-blockingNHttpClientConnection
connections identified by anHttpHost
instance. -
Uses of ConnPool in org.apache.http.impl.pool
Classes in org.apache.http.impl.pool that implement ConnPoolModifier and TypeClassDescriptionclass
A very basicConnPool
implementation that represents a pool of blockingHttpClientConnection
connections identified by anHttpHost
instance. -
Uses of ConnPool in org.apache.http.nio.pool
Classes in org.apache.http.nio.pool that implement ConnPoolModifier and TypeClassDescriptionclass
AbstractNIOConnPool<T,
C, E extends PoolEntry<T, C>> Abstract non-blocking connection pool. -
Uses of ConnPool in org.apache.http.nio.protocol
Fields in org.apache.http.nio.protocol declared as ConnPoolModifier and TypeFieldDescriptionHttpAsyncRequester.ConnPipelinedRequestCallback.connPool
HttpAsyncRequester.ConnRequestCallback.connPool
HttpAsyncRequester.RequestExecutionCallback.connPool
Methods in org.apache.http.nio.protocol with parameters of type ConnPoolModifier and TypeMethodDescription<T,
E extends PoolEntry<HttpHost, NHttpClientConnection>>
Future<T> HttpAsyncRequester.execute
(HttpAsyncRequestProducer requestProducer, HttpAsyncResponseConsumer<T> responseConsumer, E poolEntry, ConnPool<HttpHost, E> connPool, HttpContext context, FutureCallback<T> callback) Initiates asynchronous HTTP request execution.<T,
E extends PoolEntry<HttpHost, NHttpClientConnection>>
Future<T> HttpAsyncRequester.execute
(HttpAsyncRequestProducer requestProducer, HttpAsyncResponseConsumer<T> responseConsumer, ConnPool<HttpHost, E> connPool) Initiates asynchronous HTTP request execution.<T,
E extends PoolEntry<HttpHost, NHttpClientConnection>>
Future<T> HttpAsyncRequester.execute
(HttpAsyncRequestProducer requestProducer, HttpAsyncResponseConsumer<T> responseConsumer, ConnPool<HttpHost, E> connPool, HttpContext context) Initiates asynchronous HTTP request execution.<T,
E extends PoolEntry<HttpHost, NHttpClientConnection>>
Future<T> HttpAsyncRequester.execute
(HttpAsyncRequestProducer requestProducer, HttpAsyncResponseConsumer<T> responseConsumer, ConnPool<HttpHost, E> connPool, HttpContext context, FutureCallback<T> callback) Initiates asynchronous HTTP request execution.<T,
E extends PoolEntry<HttpHost, NHttpClientConnection>>
Future<List<T>> HttpAsyncRequester.executePipelined
(List<HttpAsyncRequestProducer> requestProducers, List<HttpAsyncResponseConsumer<T>> responseConsumers, E poolEntry, ConnPool<HttpHost, E> connPool, HttpContext context, FutureCallback<List<T>> callback) Initiates asynchronous pipelined HTTP request execution.<T,
E extends PoolEntry<HttpHost, NHttpClientConnection>>
Future<List<T>> HttpAsyncRequester.executePipelined
(HttpHost target, List<? extends HttpAsyncRequestProducer> requestProducers, List<? extends HttpAsyncResponseConsumer<T>> responseConsumers, ConnPool<HttpHost, E> connPool, HttpContext context, FutureCallback<List<T>> callback) Initiates asynchronous pipelined HTTP request execution.Constructors in org.apache.http.nio.protocol with parameters of type ConnPoolModifierConstructorDescription(package private)
ConnPipelinedRequestCallback
(BasicFuture<List<T>> requestFuture, List<? extends HttpAsyncRequestProducer> requestProducers, List<? extends HttpAsyncResponseConsumer<T>> responseConsumers, ConnPool<HttpHost, E> connPool, HttpContext context) (package private)
ConnRequestCallback
(BasicFuture<T> requestFuture, HttpAsyncRequestProducer requestProducer, HttpAsyncResponseConsumer<T> responseConsumer, ConnPool<HttpHost, E> connPool, HttpContext context) (package private)
RequestExecutionCallback
(BasicFuture<T> future, E poolEntry, ConnPool<HttpHost, E> connPool) -
Uses of ConnPool in org.apache.http.pool
Classes in org.apache.http.pool that implement ConnPoolModifier and TypeClassDescriptionclass
AbstractConnPool<T,
C, E extends PoolEntry<T, C>> Abstract synchronous (blocking) pool of connections.