Uses of Interface
io.netty5.handler.codec.compression.Decompressor
-
Packages that use Decompressor Package Description io.netty5.handler.codec.compression io.netty5.handler.codec.http Encoder, decoder and their related message types for HTTP.io.netty5.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames. -
-
Uses of Decompressor in io.netty5.handler.codec.compression
Classes in io.netty5.handler.codec.compression that implement Decompressor Modifier and Type Class Description class
BrotliDecompressor
Uncompresses aBuffer
encoded with the brotli format.class
Bzip2Decompressor
Uncompresses aBuffer
encoded with the Bzip2 format.class
FastLzDecompressor
Uncompresses aBuffer
encoded byFastLzCompressor
using the FastLZ algorithm.class
Lz4Decompressor
Uncompresses aBuffer
encoded with the LZ4 format.class
LzfDecompressor
Uncompresses aBuffer
encoded with the LZF format.class
SnappyDecompressor
Uncompresses aBuffer
encoded with the Snappy framing format.class
ZlibDecompressor
Decompress aBuffer
using the inflate algorithm.Constructor parameters in io.netty5.handler.codec.compression with type arguments of type Decompressor Constructor Description DecompressionHandler(Supplier<? extends Decompressor> decompressorSupplier)
Creates a new instance.DecompressionHandler(Supplier<? extends Decompressor> decompressorSupplier, boolean discardBytesAfterFinished)
Creates a new instance. -
Uses of Decompressor in io.netty5.handler.codec.http
Methods in io.netty5.handler.codec.http that return Decompressor Modifier and Type Method Description protected abstract Decompressor
HttpContentDecoder. newContentDecoder(String contentEncoding)
Returns a newDecompressor
that decodes the HTTP message content encoded in the specified contentEncoding.protected Decompressor
HttpContentDecompressor. newContentDecoder(String contentEncoding)
-
Uses of Decompressor in io.netty5.handler.codec.http2
Methods in io.netty5.handler.codec.http2 that return Decompressor Modifier and Type Method Description protected Decompressor
DelegatingDecompressorFrameListener. newContentDecompressor(ChannelHandlerContext ctx, CharSequence contentEncoding)
Returns a newEmbeddedChannel
that decodes the HTTP2 message content encoded in the specifiedcontentEncoding
.
-