Uses of Interface
org.apache.hc.core5.http.nio.AsyncEntityConsumer
-
Packages that use AsyncEntityConsumer Package Description org.apache.hc.core5.http.nio.entity HTTP message entity APIs based on the asynchronous (non-blocking) I/O model.org.apache.hc.core5.http.nio.support Support classes for the asynchronous I/O model.org.apache.hc.core5.http.nio.support.classic Support classes for the asynchronous I/O model that emulate behavior of the classic (blocking) I/O model. -
-
Uses of AsyncEntityConsumer in org.apache.hc.core5.http.nio.entity
Classes in org.apache.hc.core5.http.nio.entity that implement AsyncEntityConsumer Modifier and Type Class Description class
AbstractBinAsyncEntityConsumer<T>
Abstract binary entity content consumer.class
AbstractCharAsyncEntityConsumer<T>
Abstract text entity content consumer.class
BasicAsyncEntityConsumer
BasicAsyncEntityConsumer
implementation that processes the data stream content into a byte array.class
DigestingEntityConsumer<T>
AsyncEntityConsumer
decorator that calculates a digest hash from the data stream content and keeps the list of trailers received with the data stream.class
DiscardingEntityConsumer<T>
No-opAsyncEntityConsumer
that discards all data from the data stream.class
NoopEntityConsumer
Deprecated.class
StringAsyncEntityConsumer
BasicAsyncEntityConsumer
implementation that processes the data stream content into a string.Fields in org.apache.hc.core5.http.nio.entity declared as AsyncEntityConsumer Modifier and Type Field Description private AsyncEntityConsumer<T>
DigestingEntityConsumer. wrapped
Constructors in org.apache.hc.core5.http.nio.entity with parameters of type AsyncEntityConsumer Constructor Description DigestingEntityConsumer(java.lang.String algo, AsyncEntityConsumer<T> wrapped)
-
Uses of AsyncEntityConsumer in org.apache.hc.core5.http.nio.support
Fields in org.apache.hc.core5.http.nio.support with type parameters of type AsyncEntityConsumer Modifier and Type Field Description private java.util.concurrent.atomic.AtomicReference<AsyncEntityConsumer<E>>
AbstractAsyncRequesterConsumer. dataConsumerRef
private java.util.concurrent.atomic.AtomicReference<AsyncEntityConsumer<E>>
AbstractAsyncResponseConsumer. dataConsumerRef
private java.util.concurrent.atomic.AtomicReference<AsyncEntityConsumer<T>>
BasicRequestConsumer. dataConsumerRef
private java.util.concurrent.atomic.AtomicReference<AsyncEntityConsumer<T>>
BasicResponseConsumer. dataConsumerRef
private Supplier<AsyncEntityConsumer<E>>
AbstractAsyncRequesterConsumer. dataConsumerSupplier
private Supplier<AsyncEntityConsumer<E>>
AbstractAsyncResponseConsumer. dataConsumerSupplier
private Supplier<AsyncEntityConsumer<T>>
BasicRequestConsumer. dataConsumerSupplier
private Supplier<AsyncEntityConsumer<T>>
BasicResponseConsumer. dataConsumerSupplier
Constructors in org.apache.hc.core5.http.nio.support with parameters of type AsyncEntityConsumer Constructor Description AbstractAsyncRequesterConsumer(AsyncEntityConsumer<E> dataConsumer)
AbstractAsyncResponseConsumer(AsyncEntityConsumer<E> dataConsumer)
BasicRequestConsumer(AsyncEntityConsumer<T> dataConsumer)
BasicResponseConsumer(AsyncEntityConsumer<T> dataConsumer)
Constructor parameters in org.apache.hc.core5.http.nio.support with type arguments of type AsyncEntityConsumer Constructor Description AbstractAsyncRequesterConsumer(Supplier<AsyncEntityConsumer<E>> dataConsumerSupplier)
AbstractAsyncResponseConsumer(Supplier<AsyncEntityConsumer<E>> dataConsumerSupplier)
BasicRequestConsumer(Supplier<AsyncEntityConsumer<T>> dataConsumerSupplier)
BasicResponseConsumer(Supplier<AsyncEntityConsumer<T>> dataConsumerSupplier)
-
Uses of AsyncEntityConsumer in org.apache.hc.core5.http.nio.support.classic
Classes in org.apache.hc.core5.http.nio.support.classic that implement AsyncEntityConsumer Modifier and Type Class Description class
AbstractClassicEntityConsumer<T>
AsyncEntityConsumer
implementation that acts as a compatibility layer for classicInputStream
based interfaces.
-