Package org.apache.hc.core5.http.nio
Interface AsyncPushConsumer
- All Superinterfaces:
AsyncDataConsumer
,ResourceHolder
- All Known Implementing Classes:
AbstractAsyncPushHandler
,NoopAsyncPushHandler
Abstract asynchronous push response consumer.
- Since:
- 5.0
-
Method Summary
Modifier and TypeMethodDescriptionvoid
consumePromise
(HttpRequest promise, HttpResponse response, EntityDetails entityDetails, HttpContext context) Triggered to signal receipt of a request message head used as a promise and the corresponding pushed response.void
Triggered to signal a failure in data processing.Methods inherited from interface org.apache.hc.core5.http.nio.AsyncDataConsumer
consume, streamEnd, updateCapacity
Methods inherited from interface org.apache.hc.core5.http.nio.ResourceHolder
releaseResources
-
Method Details
-
consumePromise
void consumePromise(HttpRequest promise, HttpResponse response, EntityDetails entityDetails, HttpContext context) throws HttpException, IOException Triggered to signal receipt of a request message head used as a promise and the corresponding pushed response.- Parameters:
promise
- the request message head used as a promise.response
- the pushed response message.entityDetails
- the response entity details ornull
if the response does not enclose an entity.context
- the actual execution context.- Throws:
HttpException
IOException
-
failed
Triggered to signal a failure in data processing.- Parameters:
cause
- the cause of the failure.
-