@Immutable public class HttpAsyncRequester extends Object
HttpAsyncRequestExecutor
to initiate execution
of asynchronous HTTP requests.HttpAsyncRequestExecutor
Constructor and Description |
---|
HttpAsyncRequester(HttpProcessor httpprocessor)
Creates new instance of HttpAsyncRequester.
|
HttpAsyncRequester(HttpProcessor httpprocessor,
ConnectionReuseStrategy connReuseStrategy)
Creates new instance of HttpAsyncRequester.
|
HttpAsyncRequester(HttpProcessor httpprocessor,
ConnectionReuseStrategy reuseStrategy,
HttpParams params)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
<T,E extends PoolEntry<HttpHost,NHttpClientConnection>> |
execute(HttpAsyncRequestProducer requestProducer,
HttpAsyncResponseConsumer<T> responseConsumer,
ConnPool<HttpHost,E> connPool)
Initiates asynchronous HTTP request execution.
|
<T,E extends PoolEntry<HttpHost,NHttpClientConnection>> |
execute(HttpAsyncRequestProducer requestProducer,
HttpAsyncResponseConsumer<T> responseConsumer,
ConnPool<HttpHost,E> connPool,
HttpContext context)
Initiates asynchronous HTTP request execution.
|
<T,E extends PoolEntry<HttpHost,NHttpClientConnection>> |
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>> |
execute(HttpAsyncRequestProducer requestProducer,
HttpAsyncResponseConsumer<T> responseConsumer,
E poolEntry,
ConnPool<HttpHost,E> connPool,
HttpContext context,
FutureCallback<T> callback)
Initiates asynchronous HTTP request execution.
|
<T> Future<T> |
execute(HttpAsyncRequestProducer requestProducer,
HttpAsyncResponseConsumer<T> responseConsumer,
NHttpClientConnection conn)
Initiates asynchronous HTTP request execution.
|
<T> Future<T> |
execute(HttpAsyncRequestProducer requestProducer,
HttpAsyncResponseConsumer<T> responseConsumer,
NHttpClientConnection conn,
HttpContext context)
Initiates asynchronous HTTP request execution.
|
<T> Future<T> |
execute(HttpAsyncRequestProducer requestProducer,
HttpAsyncResponseConsumer<T> responseConsumer,
NHttpClientConnection conn,
HttpContext context,
FutureCallback<T> callback)
Initiates asynchronous HTTP request execution.
|
protected void |
log(Exception ex)
This method can be used to log I/O exception thrown while closing
Closeable objects (such as
HttpConnection }). |
@Deprecated public HttpAsyncRequester(HttpProcessor httpprocessor, ConnectionReuseStrategy reuseStrategy, HttpParams params)
HttpAsyncRequester(HttpProcessor,
ConnectionReuseStrategy)
public HttpAsyncRequester(HttpProcessor httpprocessor, ConnectionReuseStrategy connReuseStrategy)
public HttpAsyncRequester(HttpProcessor httpprocessor)
public <T> Future<T> execute(HttpAsyncRequestProducer requestProducer, HttpAsyncResponseConsumer<T> responseConsumer, NHttpClientConnection conn, HttpContext context, FutureCallback<T> callback)
T
- the result type of request execution.requestProducer
- request producer callback.responseConsumer
- response consumer callaback.conn
- underlying HTTP connection.context
- HTTP contextcallback
- future callback.public <T> Future<T> execute(HttpAsyncRequestProducer requestProducer, HttpAsyncResponseConsumer<T> responseConsumer, NHttpClientConnection conn, HttpContext context)
T
- the result type of request execution.requestProducer
- request producer callback.responseConsumer
- response consumer callaback.conn
- underlying HTTP connection.context
- HTTP contextpublic <T> Future<T> execute(HttpAsyncRequestProducer requestProducer, HttpAsyncResponseConsumer<T> responseConsumer, NHttpClientConnection conn)
T
- the result type of request execution.requestProducer
- request producer callback.responseConsumer
- response consumer callaback.conn
- underlying HTTP connection.public <T,E extends PoolEntry<HttpHost,NHttpClientConnection>> Future<T> execute(HttpAsyncRequestProducer requestProducer, HttpAsyncResponseConsumer<T> responseConsumer, ConnPool<HttpHost,E> connPool, HttpContext context, FutureCallback<T> callback)
T
- the result type of request execution.E
- the connection pool entry type.requestProducer
- request producer callback.responseConsumer
- response consumer callaback.connPool
- pool of persistent reusable connections.context
- HTTP contextcallback
- future callback.public <T,E extends PoolEntry<HttpHost,NHttpClientConnection>> Future<T> execute(HttpAsyncRequestProducer requestProducer, HttpAsyncResponseConsumer<T> responseConsumer, E poolEntry, ConnPool<HttpHost,E> connPool, HttpContext context, FutureCallback<T> callback)
T
- the result type of request execution.E
- the connection pool entry type.requestProducer
- request producer callback.responseConsumer
- response consumer callaback.poolEntry
- leased pool entry. It will be automatically released
back to the pool when execution is completed.connPool
- pool of persistent reusable connections.context
- HTTP contextcallback
- future callback.public <T,E extends PoolEntry<HttpHost,NHttpClientConnection>> Future<T> execute(HttpAsyncRequestProducer requestProducer, HttpAsyncResponseConsumer<T> responseConsumer, ConnPool<HttpHost,E> connPool, HttpContext context)
T
- the result type of request execution.E
- the connection pool entry type.requestProducer
- request producer callback.responseConsumer
- response consumer callaback.connPool
- pool of persistent reusable connections.context
- HTTP contextpublic <T,E extends PoolEntry<HttpHost,NHttpClientConnection>> Future<T> execute(HttpAsyncRequestProducer requestProducer, HttpAsyncResponseConsumer<T> responseConsumer, ConnPool<HttpHost,E> connPool)
T
- the result type of request execution.E
- the connection pool entry type.requestProducer
- request producer callback.responseConsumer
- response consumer callaback.connPool
- pool of persistent reusable connections.protected void log(Exception ex)
Closeable
objects (such as
HttpConnection
}).ex
- I/O exception thrown by Closeable.close()
Copyright © 2005-2014 The Apache Software Foundation. All Rights Reserved.