Uses of Interface
org.apache.hc.core5.http.nio.AsyncRequestConsumer
-
Packages that use AsyncRequestConsumer Package Description org.apache.hc.core5.http.nio Core HTTP transport APIs based on the asynchronous, event driven I/O model.org.apache.hc.core5.http.nio.support Support classes for the asynchronous I/O model. -
-
Uses of AsyncRequestConsumer in org.apache.hc.core5.http.nio
Methods in org.apache.hc.core5.http.nio that return AsyncRequestConsumer Modifier and Type Method Description AsyncRequestConsumer<T>
AsyncServerRequestHandler. prepare(HttpRequest request, EntityDetails entityDetails, HttpContext context)
Triggered to signal new incoming request. -
Uses of AsyncRequestConsumer in org.apache.hc.core5.http.nio.support
Classes in org.apache.hc.core5.http.nio.support that implement AsyncRequestConsumer Modifier and Type Class Description class
AbstractAsyncRequesterConsumer<T,E>
Abstract asynchronous request consumer that makes use ofAsyncEntityConsumer
to process request message content.class
BasicRequestConsumer<T>
Basic implementation ofAsyncRequestConsumer
that represents the request message as aMessage
and relies on aAsyncEntityConsumer
to process request entity stream.Fields in org.apache.hc.core5.http.nio.support with type parameters of type AsyncRequestConsumer Modifier and Type Field Description private java.util.concurrent.atomic.AtomicReference<AsyncRequestConsumer<T>>
AbstractServerExchangeHandler. requestConsumerRef
Methods in org.apache.hc.core5.http.nio.support that return AsyncRequestConsumer Modifier and Type Method Description protected abstract AsyncRequestConsumer<T>
AbstractServerExchangeHandler. supplyConsumer(HttpRequest request, EntityDetails entityDetails, HttpContext context)
Triggered to supply a request consumer to process the incoming request.protected AsyncRequestConsumer<T>
BasicServerExchangeHandler. supplyConsumer(HttpRequest request, EntityDetails entityDetails, HttpContext context)
-