Class BasicAsyncClientExchangeHandler<T>
- Type Parameters:
T
- the result type of request execution.
- All Implemented Interfaces:
Closeable
,AutoCloseable
,Cancellable
,HttpAsyncClientExchangeHandler
HttpAsyncClientExchangeHandler
that executes
a single HTTP request / response exchange.- Since:
- 4.3
-
Constructor Summary
ConstructorsConstructorDescriptionBasicAsyncClientExchangeHandler
(HttpAsyncRequestProducer requestProducer, HttpAsyncResponseConsumer<T> responseConsumer, FutureCallback<T> callback, HttpContext localContext, NHttpClientConnection conn, HttpProcessor httppocessor, ConnectionReuseStrategy connReuseStrategy) Creates new instance of BasicAsyncRequestExecutionHandler.BasicAsyncClientExchangeHandler
(HttpAsyncRequestProducer requestProducer, HttpAsyncResponseConsumer<T> responseConsumer, HttpContext localContext, NHttpClientConnection conn, HttpProcessor httppocessor) Creates new instance of BasicAsyncRequestExecutionHandler. -
Method Summary
Modifier and TypeMethodDescriptionboolean
cancel()
void
close()
void
consumeContent
(ContentDecoder decoder, IOControl ioctrl) Invoked to process a chunk of content from theContentDecoder
.void
Invoked to signal that the response processing terminated abnormally.Invoked to generate a HTTP request message head.void
Invoked to signal that the connection has been terminated prematurely by the opposite end.boolean
isDone()
Determines whether or not the response processing completed.void
produceContent
(ContentEncoder encoder, IOControl ioctrl) Invoked to write out a chunk of content to theContentEncoder
.void
Invoked to signal that the request has been fully written out.void
Invoked to signal that the response has been fully processed.void
responseReceived
(HttpResponse response) Invoked when a HTTP response message is received.
-
Constructor Details
-
BasicAsyncClientExchangeHandler
public BasicAsyncClientExchangeHandler(HttpAsyncRequestProducer requestProducer, HttpAsyncResponseConsumer<T> responseConsumer, FutureCallback<T> callback, HttpContext localContext, NHttpClientConnection conn, HttpProcessor httppocessor, ConnectionReuseStrategy connReuseStrategy) Creates new instance of BasicAsyncRequestExecutionHandler.- Parameters:
requestProducer
- the request producer.responseConsumer
- the response consumer.callback
- the future callback invoked when the operation is completed.localContext
- the local execution context.conn
- the actual connection.httppocessor
- the HTTP protocol processor.connReuseStrategy
- the connection re-use strategy.
-
BasicAsyncClientExchangeHandler
public BasicAsyncClientExchangeHandler(HttpAsyncRequestProducer requestProducer, HttpAsyncResponseConsumer<T> responseConsumer, HttpContext localContext, NHttpClientConnection conn, HttpProcessor httppocessor) Creates new instance of BasicAsyncRequestExecutionHandler.- Parameters:
requestProducer
- the request producer.responseConsumer
- the response consumer.localContext
- the local execution context.conn
- the actual connection.httppocessor
- the HTTP protocol processor.
-
-
Method Details
-
getFuture
-
close
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Throws:
IOException
-
generateRequest
Description copied from interface:HttpAsyncClientExchangeHandler
Invoked to generate a HTTP request message head. The message is expected to implement theHttpEntityEnclosingRequest
interface if it is to enclose a content entity. TheHttpAsyncClientExchangeHandler.produceContent(ContentEncoder, IOControl)
method will not be invoked ifHttpEntityEnclosingRequest.getEntity()
returnsnull
.- Specified by:
generateRequest
in interfaceHttpAsyncClientExchangeHandler
- Returns:
- HTTP request message.
- Throws:
IOException
- in case of an I/O errorHttpException
- in case of HTTP protocol violation
-
produceContent
Description copied from interface:HttpAsyncClientExchangeHandler
Invoked to write out a chunk of content to theContentEncoder
. TheIOControl
interface can be used to suspend output event notifications if the producer is temporarily unable to produce more content.When all content is finished, the producer MUST call
ContentEncoder.complete()
. Failure to do so may cause the entity to be incorrectly delimited.Please note that the
ContentEncoder
object is not thread-safe and should only be used within the context of this method call. TheIOControl
object can be shared and used on other thread to resume output event notifications when more content is made available.- Specified by:
produceContent
in interfaceHttpAsyncClientExchangeHandler
- Parameters:
encoder
- content encoder.ioctrl
- I/O control of the underlying connection.- Throws:
IOException
- in case of an I/O error
-
requestCompleted
public void requestCompleted()Description copied from interface:HttpAsyncClientExchangeHandler
Invoked to signal that the request has been fully written out.- Specified by:
requestCompleted
in interfaceHttpAsyncClientExchangeHandler
-
responseReceived
Description copied from interface:HttpAsyncClientExchangeHandler
Invoked when a HTTP response message is received. Please note that theHttpAsyncClientExchangeHandler.consumeContent(ContentDecoder, IOControl)
method will be invoked only if the response messages has a content entity enclosed.- Specified by:
responseReceived
in interfaceHttpAsyncClientExchangeHandler
- Parameters:
response
- HTTP response message.- Throws:
IOException
- in case of an I/O errorHttpException
- in case of HTTP protocol violation
-
consumeContent
Description copied from interface:HttpAsyncClientExchangeHandler
Invoked to process a chunk of content from theContentDecoder
. TheIOControl
interface can be used to suspend input event notifications if the consumer is temporarily unable to process content.The consumer can use the
ContentDecoder.isCompleted()
method to find out whether or not the message content has been fully consumed.Please note that the
ContentDecoder
object is not thread-safe and should only be used within the context of this method call. TheIOControl
object can be shared and used on other thread to resume input event notifications when the consumer is capable of processing more content.- Specified by:
consumeContent
in interfaceHttpAsyncClientExchangeHandler
- Parameters:
decoder
- content decoder.ioctrl
- I/O control of the underlying connection.- Throws:
IOException
- in case of an I/O error
-
responseCompleted
Description copied from interface:HttpAsyncClientExchangeHandler
Invoked to signal that the response has been fully processed.- Specified by:
responseCompleted
in interfaceHttpAsyncClientExchangeHandler
- Throws:
IOException
-
inputTerminated
public void inputTerminated()Description copied from interface:HttpAsyncClientExchangeHandler
Invoked to signal that the connection has been terminated prematurely by the opposite end.- Specified by:
inputTerminated
in interfaceHttpAsyncClientExchangeHandler
-
failed
Description copied from interface:HttpAsyncClientExchangeHandler
Invoked to signal that the response processing terminated abnormally.- Specified by:
failed
in interfaceHttpAsyncClientExchangeHandler
- Parameters:
ex
- exception
-
cancel
public boolean cancel()- Specified by:
cancel
in interfaceCancellable
-
isDone
public boolean isDone()Description copied from interface:HttpAsyncClientExchangeHandler
Determines whether or not the response processing completed.- Specified by:
isDone
in interfaceHttpAsyncClientExchangeHandler
-