Uses of Interface
org.apache.hc.core5.http.nio.AsyncEntityConsumer
Packages that use AsyncEntityConsumer
Package
Description
HTTP message entity APIs based on the asynchronous (non-blocking) I/O model.
Support classes for the asynchronous I/O model.
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 AsyncEntityConsumerModifier and TypeClassDescriptionclass
Abstract binary entity content consumer.class
Abstract text entity content consumer.class
BasicAsyncEntityConsumer
implementation that processes the data stream content into a byte array.class
AsyncEntityConsumer
decorator that calculates a digest hash from the data stream content and keeps the list of trailers received with the data stream.final class
No-opAsyncEntityConsumer
that discards all data from the data stream.final class
Deprecated.class
BasicAsyncEntityConsumer
implementation that processes the data stream content into a string.Fields in org.apache.hc.core5.http.nio.entity declared as AsyncEntityConsumerModifier and TypeFieldDescriptionprivate final AsyncEntityConsumer
<T> DigestingEntityConsumer.wrapped
Constructors in org.apache.hc.core5.http.nio.entity with parameters of type AsyncEntityConsumerModifierConstructorDescriptionDigestingEntityConsumer
(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 AsyncEntityConsumerModifier and TypeFieldDescriptionprivate final AtomicReference
<AsyncEntityConsumer<E>> AbstractAsyncRequesterConsumer.dataConsumerRef
private final AtomicReference
<AsyncEntityConsumer<E>> AbstractAsyncResponseConsumer.dataConsumerRef
private final AtomicReference
<AsyncEntityConsumer<T>> BasicRequestConsumer.dataConsumerRef
private final AtomicReference
<AsyncEntityConsumer<T>> BasicResponseConsumer.dataConsumerRef
private final Supplier
<AsyncEntityConsumer<E>> AbstractAsyncRequesterConsumer.dataConsumerSupplier
private final Supplier
<AsyncEntityConsumer<E>> AbstractAsyncResponseConsumer.dataConsumerSupplier
private final Supplier
<AsyncEntityConsumer<T>> BasicRequestConsumer.dataConsumerSupplier
private final Supplier
<AsyncEntityConsumer<T>> BasicResponseConsumer.dataConsumerSupplier
Constructors in org.apache.hc.core5.http.nio.support with parameters of type AsyncEntityConsumerModifierConstructorDescriptionAbstractAsyncRequesterConsumer
(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 AsyncEntityConsumerModifierConstructorDescriptionAbstractAsyncRequesterConsumer
(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 AsyncEntityConsumerModifier and TypeClassDescriptionclass
AsyncEntityConsumer
implementation that acts as a compatibility layer for classicInputStream
based interfaces.
DiscardingEntityConsumer