IOEventDispatchSSLClientIOEventDispatchDefaultHttpClientIODispatch@Deprecated public class DefaultClientIOEventDispatch extends AbstractIODispatch<NHttpClientIOTarget>
IOEventDispatch
interface for plain (unencrypted) client-side HTTP connections.| Modifier and Type | Field | Description |
|---|---|---|
protected ByteBufferAllocator |
allocator |
Deprecated.
|
protected NHttpClientHandler |
handler |
Deprecated.
|
protected org.apache.http.params.HttpParams |
params |
Deprecated.
|
CONNECTION_KEY| Constructor | Description |
|---|---|
DefaultClientIOEventDispatch(NHttpClientHandler handler,
org.apache.http.params.HttpParams params) |
Deprecated.
Creates a new instance of this class to be used for dispatching I/O event
notifications to the given protocol handler.
|
| Modifier and Type | Method | Description |
|---|---|---|
protected ByteBufferAllocator |
createByteBufferAllocator() |
Deprecated.
Creates an instance of
HeapByteBufferAllocator to be used
by HTTP connections for allocating ByteBuffer objects. |
protected NHttpClientIOTarget |
createConnection(IOSession session) |
Deprecated.
Creates an instance of
DefaultNHttpClientConnection based on the
given IOSession. |
protected org.apache.http.HttpResponseFactory |
createHttpResponseFactory() |
Deprecated.
Creates an instance of
DefaultHttpResponseFactory to be used
by HTTP connections for creating HttpResponse
objects. |
protected void |
onClosed(NHttpClientIOTarget conn) |
Deprecated.
|
protected void |
onConnected(NHttpClientIOTarget conn) |
Deprecated.
|
protected void |
onException(NHttpClientIOTarget conn,
java.io.IOException ex) |
Deprecated.
|
protected void |
onInputReady(NHttpClientIOTarget conn) |
Deprecated.
|
protected void |
onOutputReady(NHttpClientIOTarget conn) |
Deprecated.
|
protected void |
onTimeout(NHttpClientIOTarget conn) |
Deprecated.
|
connected, disconnected, inputReady, outputReady, timeoutprotected final NHttpClientHandler handler
protected final ByteBufferAllocator allocator
protected final org.apache.http.params.HttpParams params
public DefaultClientIOEventDispatch(NHttpClientHandler handler, org.apache.http.params.HttpParams params)
handler - the client protocol handler.params - HTTP parameters.protected ByteBufferAllocator createByteBufferAllocator()
HeapByteBufferAllocator to be used
by HTTP connections for allocating ByteBuffer objects.
This method can be overridden in a super class in order to provide
a different implementation of the ByteBufferAllocator interface.
protected org.apache.http.HttpResponseFactory createHttpResponseFactory()
DefaultHttpResponseFactory to be used
by HTTP connections for creating HttpResponse
objects.
This method can be overridden in a super class in order to provide
a different implementation of the HttpResponseFactory interface.
protected NHttpClientIOTarget createConnection(IOSession session)
DefaultNHttpClientConnection based on the
given IOSession.
This method can be overridden in a super class in order to provide
a different implementation of the NHttpClientIOTarget interface.
createConnection in class AbstractIODispatch<NHttpClientIOTarget>session - the underlying I/O session.protected void onConnected(NHttpClientIOTarget conn)
onConnected in class AbstractIODispatch<NHttpClientIOTarget>protected void onClosed(NHttpClientIOTarget conn)
onClosed in class AbstractIODispatch<NHttpClientIOTarget>protected void onException(NHttpClientIOTarget conn, java.io.IOException ex)
onException in class AbstractIODispatch<NHttpClientIOTarget>protected void onInputReady(NHttpClientIOTarget conn)
onInputReady in class AbstractIODispatch<NHttpClientIOTarget>protected void onOutputReady(NHttpClientIOTarget conn)
onOutputReady in class AbstractIODispatch<NHttpClientIOTarget>protected void onTimeout(NHttpClientIOTarget conn)
onTimeout in class AbstractIODispatch<NHttpClientIOTarget>