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 classAbstractBinAsyncEntityConsumer<T>Abstract binary entity content consumer.classAbstractCharAsyncEntityConsumer<T>Abstract text entity content consumer.classBasicAsyncEntityConsumerBasicAsyncEntityConsumerimplementation that processes the data stream content into a byte array.classDigestingEntityConsumer<T>AsyncEntityConsumerdecorator that calculates a digest hash from the data stream content and keeps the list of trailers received with the data stream.classDiscardingEntityConsumer<T>No-opAsyncEntityConsumerthat discards all data from the data stream.classNoopEntityConsumerDeprecated.classStringAsyncEntityConsumerBasicAsyncEntityConsumerimplementation 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. wrappedConstructors 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. dataConsumerRefprivate java.util.concurrent.atomic.AtomicReference<AsyncEntityConsumer<E>>AbstractAsyncResponseConsumer. dataConsumerRefprivate java.util.concurrent.atomic.AtomicReference<AsyncEntityConsumer<T>>BasicRequestConsumer. dataConsumerRefprivate java.util.concurrent.atomic.AtomicReference<AsyncEntityConsumer<T>>BasicResponseConsumer. dataConsumerRefprivate Supplier<AsyncEntityConsumer<E>>AbstractAsyncRequesterConsumer. dataConsumerSupplierprivate Supplier<AsyncEntityConsumer<E>>AbstractAsyncResponseConsumer. dataConsumerSupplierprivate Supplier<AsyncEntityConsumer<T>>BasicRequestConsumer. dataConsumerSupplierprivate Supplier<AsyncEntityConsumer<T>>BasicResponseConsumer. dataConsumerSupplierConstructors 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 classAbstractClassicEntityConsumer<T>AsyncEntityConsumerimplementation that acts as a compatibility layer for classicInputStreambased interfaces.
-