Package org.apache.http.nio.protocol
Interface HttpAsyncResponseProducer
-
- All Superinterfaces:
java.lang.AutoCloseable
,java.io.Closeable
- All Known Implementing Classes:
BasicAsyncResponseProducer
,ErrorResponseProducer
public interface HttpAsyncResponseProducer extends java.io.Closeable
HttpAsyncResponseProducer
is a callback interface whose methods get invoked to generate an HTTP response message and to stream message content to a non-blocking HTTP connection on the server side.- Since:
- 4.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
failed(java.lang.Exception ex)
Invoked to signal that the response processing terminated abnormally.HttpResponse
generateResponse()
Invoked to generate a HTTP response message head.void
produceContent(ContentEncoder encoder, IOControl ioctrl)
Invoked to write out a chunk of content to theContentEncoder
.void
responseCompleted(HttpContext context)
Invoked to signal that the response has been fully written out.
-
-
-
Method Detail
-
generateResponse
HttpResponse generateResponse()
Invoked to generate a HTTP response message head.- Returns:
- HTTP response message.
-
produceContent
void produceContent(ContentEncoder encoder, IOControl ioctrl) throws java.io.IOException
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.- Parameters:
encoder
- content encoder.ioctrl
- I/O control of the underlying connection.- Throws:
java.io.IOException
- in case of an I/O error
-
responseCompleted
void responseCompleted(HttpContext context)
Invoked to signal that the response has been fully written out.- Parameters:
context
- HTTP context
-
failed
void failed(java.lang.Exception ex)
Invoked to signal that the response processing terminated abnormally.- Parameters:
ex
- exception
-
-