HttpAsyncRequestExecutor
and HttpAsyncRequester
@Deprecated
public interface HttpRequestExecutionHandler
Modifier and Type | Method and Description |
---|---|
void |
finalizeContext(HttpContext context)
Deprecated.
Triggered when the connection is terminated.
|
void |
handleResponse(HttpResponse response,
HttpContext context)
Deprecated.
Triggered when an HTTP response is ready to be processed.
|
void |
initalizeContext(HttpContext context,
java.lang.Object attachment)
Deprecated.
Triggered when a new connection has been established and the
HTTP context needs to be initialized.
|
HttpRequest |
submitRequest(HttpContext context)
Deprecated.
Triggered when the underlying connection is ready to send a new
HTTP request to the target host.
|
void initalizeContext(HttpContext context, java.lang.Object attachment)
The attachment object is the same object which was passed to the connecting I/O reactor when the connection request was made. The attachment may optionally contain some state information required in order to correctly initialize the HTTP context.
context
- the actual HTTP contextattachment
- the object passed to the connecting I/O reactor
upon the request for a new connection.ConnectingIOReactor.connect(java.net.SocketAddress, java.net.SocketAddress, java.lang.Object, org.apache.http.nio.reactor.SessionRequestCallback)
HttpRequest submitRequest(HttpContext context)
null
if the client is not yet ready to send a
request. In this case the connection will remain open and
can be activated at a later point.context
- the actual HTTP contextnull
if no
request needs to be sentvoid handleResponse(HttpResponse response, HttpContext context) throws java.io.IOException
response
- the HTTP response to be processedcontext
- the actual HTTP contextjava.io.IOException
- if a problem is encounteredvoid finalizeContext(HttpContext context)
context
- the actual HTTP context