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 classAbstractContentDecoderAbstractContentDecoderthat serves as a base for all content decoder implementations.classChunkDecoderImplements chunked transfer decoding.classIdentityDecoderContent decoder that reads data without any transformation.classLengthDelimitedDecoderContent 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. incomingMessageMethods in org.apache.hc.core5.http.impl.nio that return ContentDecoder Modifier and Type Method Description (package private) abstract ContentDecoderAbstractHttp1StreamDuplexer. createContentDecoder(long contentLength, java.nio.channels.ReadableByteChannel channel, SessionInputBuffer buffer, BasicHttpTransportMetrics metrics)protected ContentDecoderClientHttp1StreamDuplexer. createContentDecoder(long len, java.nio.channels.ReadableByteChannel channel, SessionInputBuffer buffer, BasicHttpTransportMetrics metrics)protected ContentDecoderServerHttp1StreamDuplexer. 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 interfaceFileContentDecoderA content decoder capable of transferring data directly to aFileChannel
-