public class

ThrottlingHttpClientHandler

extends NHttpHandlerBase
implements NHttpClientHandler
java.lang.Object
   ↳ org.apache.http.nio.protocol.NHttpHandlerBase
     ↳ org.apache.http.nio.protocol.ThrottlingHttpClientHandler

Class Overview

Client protocol handler implementation that provide compatibility with the blocking I/O by utilizing shared content buffers and a fairly small pool of worker threads. The throttling protocol handler allocates input / output buffers of a constant length upon initialization and controls the rate of I/O events in order to ensure those content buffers do not ever get overflown. This helps ensure nearly constant memory footprint for HTTP connections and avoid the out of memory condition while streaming content in and out. The handleResponse(HttpResponse, HttpContext) method will fire immediately when a message is received. The protocol handler delegate the task of processing requests and generating response content to an Executor, which is expected to perform those tasks using dedicated worker threads in order to avoid blocking the I/O thread.

Usually throttling protocol handlers need only a modest number of worker threads, much fewer than the number of concurrent connections. If the length of the message is smaller or about the size of the shared content buffer worker thread will just store content in the buffer and terminate almost immediately without blocking. The I/O dispatch thread in its turn will take care of sending out the buffered content asynchronously. The worker thread will have to block only when processing large messages and the shared buffer fills up. It is generally advisable to allocate shared buffers of a size of an average content body for optimal performance.

The following parameters can be used to customize the behavior of this class:

Summary

[Expand]
Inherited Constants
From class org.apache.http.nio.protocol.NHttpHandlerBase
Fields
protected HttpRequestExecutionHandler execHandler
protected final Executor executor
[Expand]
Inherited Fields
From class org.apache.http.nio.protocol.NHttpHandlerBase
Public Constructors
ThrottlingHttpClientHandler(HttpProcessor httpProcessor, HttpRequestExecutionHandler execHandler, ConnectionReuseStrategy connStrategy, ByteBufferAllocator allocator, Executor executor, HttpParams params)
ThrottlingHttpClientHandler(HttpProcessor httpProcessor, HttpRequestExecutionHandler execHandler, ConnectionReuseStrategy connStrategy, Executor executor, HttpParams params)
Public Methods
void closed(NHttpClientConnection conn)
Triggered when the connection is closed.
void connected(NHttpClientConnection conn, Object attachment)
Triggered when a new outgoing connection is created.
void exception(NHttpClientConnection conn, HttpException ex)
Triggered when an HTTP protocol violation occurs while receiving an HTTP response.
void exception(NHttpClientConnection conn, IOException ex)
Triggered when an I/O error occurs while reading from or writing to the underlying channel.
void inputReady(NHttpClientConnection conn, ContentDecoder decoder)
Triggered when the underlying channel is ready for reading a new portion of the response entity through the corresponding content decoder.
void outputReady(NHttpClientConnection conn, ContentEncoder encoder)
Triggered when the underlying channel is ready for writing a next portion of the request entity through the corresponding content encoder.
void requestReady(NHttpClientConnection conn)
Triggered when the connection is ready to accept a new HTTP request.
void responseReceived(NHttpClientConnection conn)
Triggered when an HTTP response is received.
void timeout(NHttpClientConnection conn)
Triggered when no input is detected on this connection over the maximum period of inactivity.
[Expand]
Inherited Methods
From class org.apache.http.nio.protocol.NHttpHandlerBase
From class java.lang.Object
From interface org.apache.http.nio.NHttpClientHandler

Fields

protected HttpRequestExecutionHandler execHandler

protected final Executor executor

Public Constructors

public ThrottlingHttpClientHandler (HttpProcessor httpProcessor, HttpRequestExecutionHandler execHandler, ConnectionReuseStrategy connStrategy, ByteBufferAllocator allocator, Executor executor, HttpParams params)

public ThrottlingHttpClientHandler (HttpProcessor httpProcessor, HttpRequestExecutionHandler execHandler, ConnectionReuseStrategy connStrategy, Executor executor, HttpParams params)

Public Methods

public void closed (NHttpClientConnection conn)

Triggered when the connection is closed.

Parameters
conn closed HTTP connection.

public void connected (NHttpClientConnection conn, Object attachment)

Triggered when a new outgoing connection is created.

Parameters
conn new outgoing HTTP connection.
attachment an object that was attached to the session request

public void exception (NHttpClientConnection conn, HttpException ex)

Triggered when an HTTP protocol violation occurs while receiving an HTTP response.

Parameters
conn HTTP connection that caused an HTTP protocol violation
ex HTTP protocol violation exception

public void exception (NHttpClientConnection conn, IOException ex)

Triggered when an I/O error occurs while reading from or writing to the underlying channel.

Parameters
conn HTTP connection that caused an I/O error
ex I/O exception

public void inputReady (NHttpClientConnection conn, ContentDecoder decoder)

Triggered when the underlying channel is ready for reading a new portion of the response entity through the corresponding content decoder.

If the content consumer is unable to process the incoming content, input event notifications can be temporarily suspended using IOControl interface.

Parameters
conn HTTP connection that can produce a new portion of the incoming response content.
decoder The content decoder to use to read content.

public void outputReady (NHttpClientConnection conn, ContentEncoder encoder)

Triggered when the underlying channel is ready for writing a next portion of the request entity through the corresponding content encoder.

If the content producer is unable to generate the outgoing content, output event notifications can be temporarily suspended using IOControl interface.

Parameters
conn HTTP connection that can accommodate a new portion of the outgoing request content.
encoder The content encoder to use to write content.

public void requestReady (NHttpClientConnection conn)

Triggered when the connection is ready to accept a new HTTP request. The protocol handler does not have to submit a request if it is not ready.

Parameters
conn HTTP connection that is ready to accept a new HTTP request.

public void responseReceived (NHttpClientConnection conn)

Triggered when an HTTP response is received. The connection passed as a parameter to this method is guaranteed to return a valid HTTP response object.

If the response received encloses a response entity this method will be followed by a series of inputReady(NHttpClientConnection, ContentDecoder) calls to transfer the response content.

Parameters
conn HTTP connection that contains an HTTP response

public void timeout (NHttpClientConnection conn)

Triggered when no input is detected on this connection over the maximum period of inactivity.

Parameters
conn HTTP connection that caused timeout condition.