Package io.netty.handler.codec.compression
-
Interface Summary Interface Description CompressionOptions CompressionOptions
provides compression options for various types of compressor types, like Brotli. -
Class Summary Class Description Bzip2Decoder Uncompresses aByteBuf
encoded with the Bzip2 format.Bzip2Encoder Compresses aByteBuf
using the Bzip2 algorithm.DeflateOptions DeflateOptions
holdsDeflateOptions.compressionLevel()
,DeflateOptions.memLevel()
andDeflateOptions.windowBits()
for Deflate compression.FastLzFrameDecoder Uncompresses aByteBuf
encoded byFastLzFrameEncoder
using the FastLZ algorithm.FastLzFrameEncoder Compresses aByteBuf
using the FastLZ algorithm.GzipOptions GzipOptions
holdsDeflateOptions.compressionLevel()
,DeflateOptions.memLevel()
andDeflateOptions.windowBits()
for Gzip compression.JdkZlibDecoder Decompress aByteBuf
using the inflate algorithm.JdkZlibEncoder Compresses aByteBuf
using the deflate algorithm.JZlibDecoder JZlibEncoder Compresses aByteBuf
using the deflate algorithm.Snappy SnappyFramedDecoder Deprecated. UseSnappyFrameDecoder
instead.SnappyFrameDecoder Uncompresses aByteBuf
encoded with the Snappy framing format.SnappyFramedEncoder Deprecated. UseSnappyFrameEncoder
instead.SnappyFrameEncoder Compresses aByteBuf
using the Snappy framing format.StandardCompressionOptions Standard Compression Options forGzipOptions
andDeflateOptions
ZlibCodecFactory Creates a newZlibEncoder
and a newZlibDecoder
.ZlibDecoder Decompresses aByteBuf
using the deflate algorithm.ZlibEncoder Compresses aByteBuf
using the deflate algorithm. -
Enum Summary Enum Description ZlibWrapper The container file formats that wrap the stream compressed by the DEFLATE algorithm. -
Exception Summary Exception Description CompressionException AnEncoderException
that is raised when compression failed.DecompressionException ADecoderException
that is raised when decompression failed.