Module io.netty5.codec
Package io.netty5.handler.codec.compression
-
Interface Summary Interface Description CompressionOptions CompressionOptions
provides compression options for various types of compressor types, like Brotli.Compressor Compressor that takes care of compress some input.Decompressor Decompressor that takes care of decompress some input. -
Class Summary Class Description Brotli BrotliCompressor Compress aBuffer
with the brotli format.BrotliDecompressor Uncompresses aBuffer
encoded with the brotli format.BrotliOptions BrotliOptions
holdsEncoder.Parameters
for Brotli compression.Bzip2Compressor Compresses aBuffer
using the Bzip2 algorithm.Bzip2Decompressor Uncompresses aBuffer
encoded with the Bzip2 format.CompressionHandler DecompressionHandler DeflateOptions DeflateOptions
holdsDeflateOptions.compressionLevel()
,DeflateOptions.memLevel()
andDeflateOptions.windowBits()
for Deflate compression.FastLzCompressor Compresses aBuffer
using the FastLZ algorithm.FastLzDecompressor Uncompresses aBuffer
encoded byFastLzCompressor
using the FastLZ algorithm.GzipOptions GzipOptions
holdsDeflateOptions.compressionLevel()
,DeflateOptions.memLevel()
andDeflateOptions.windowBits()
for Gzip compression.Lz4Compressor Compresses aBuffer
using the LZ4 format.Lz4Decompressor Uncompresses aBuffer
encoded with the LZ4 format.Lz4XXHash32 LzfCompressor Compresses aBuffer
using the LZF format.LzfDecompressor Uncompresses aBuffer
encoded with the LZF format.LzmaCompressor Compresses aBuffer
using the LZMA algorithm.Snappy SnappyCompressor Compresses aBuffer
using the Snappy framing format.SnappyDecompressor Uncompresses aBuffer
encoded with the Snappy framing format.StandardCompressionOptions ZlibCodecFactory Creates a new ZLIB encoder / decoder.ZlibCompressor Compresses aBuffer
using the deflate algorithm.ZlibDecompressor Decompress aBuffer
using the inflate algorithm.Zstd ZstdCompressor Compresses aBuffer
using the Zstandard algorithm.ZstdOptions ZstdOptions
holds compressionLevel for Zstd compression. -
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.