Uses of Interface
org.apache.hc.core5.http.nio.ContentDecoder
-
Packages that use ContentDecoder Package Description org.apache.hc.core5.http.impl.nio Default implementation of HTTP/1.1 transport based on the asynchronous (non-blocking) I/O model.org.apache.hc.core5.http.nio Core HTTP transport APIs based on the asynchronous, event driven I/O model. -
-
Uses of ContentDecoder in org.apache.hc.core5.http.impl.nio
Classes in org.apache.hc.core5.http.impl.nio that implement ContentDecoder Modifier and Type Class Description class
AbstractContentDecoder
AbstractContentDecoder
that serves as a base for all content decoder implementations.class
ChunkDecoder
Implements chunked transfer decoding.class
IdentityDecoder
Content decoder that reads data without any transformation.class
LengthDelimitedDecoder
Content decoder that cuts off after a defined number of bytes.Fields in org.apache.hc.core5.http.impl.nio with type parameters of type ContentDecoder Modifier and Type Field Description private Message<IncomingMessage,ContentDecoder>
AbstractHttp1StreamDuplexer. incomingMessage
Methods in org.apache.hc.core5.http.impl.nio that return ContentDecoder Modifier and Type Method Description (package private) abstract ContentDecoder
AbstractHttp1StreamDuplexer. createContentDecoder(long contentLength, java.nio.channels.ReadableByteChannel channel, SessionInputBuffer buffer, BasicHttpTransportMetrics metrics)
protected ContentDecoder
ClientHttp1StreamDuplexer. createContentDecoder(long len, java.nio.channels.ReadableByteChannel channel, SessionInputBuffer buffer, BasicHttpTransportMetrics metrics)
protected ContentDecoder
ServerHttp1StreamDuplexer. createContentDecoder(long len, java.nio.channels.ReadableByteChannel channel, SessionInputBuffer buffer, BasicHttpTransportMetrics metrics)
-
Uses of ContentDecoder in org.apache.hc.core5.http.nio
Subinterfaces of ContentDecoder in org.apache.hc.core5.http.nio Modifier and Type Interface Description interface
FileContentDecoder
A content decoder capable of transferring data directly to aFileChannel
-