Module io.netty5.codec
Package io.netty5.handler.codec.compression
-
Interface Summary Interface Description CompressionOptions CompressionOptionsprovides 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 aBufferwith the brotli format.BrotliDecompressor Uncompresses aBufferencoded with the brotli format.BrotliOptions BrotliOptionsholdsEncoder.Parametersfor Brotli compression.Bzip2Compressor Compresses aBufferusing the Bzip2 algorithm.Bzip2Decompressor Uncompresses aBufferencoded with the Bzip2 format.CompressionHandler DecompressionHandler DeflateOptions DeflateOptionsholdsDeflateOptions.compressionLevel(),DeflateOptions.memLevel()andDeflateOptions.windowBits()for Deflate compression.FastLzCompressor Compresses aBufferusing the FastLZ algorithm.FastLzDecompressor Uncompresses aBufferencoded byFastLzCompressorusing the FastLZ algorithm.GzipOptions GzipOptionsholdsDeflateOptions.compressionLevel(),DeflateOptions.memLevel()andDeflateOptions.windowBits()for Gzip compression.Lz4Compressor Compresses aBufferusing the LZ4 format.Lz4Decompressor Uncompresses aBufferencoded with the LZ4 format.Lz4XXHash32 LzfCompressor Compresses aBufferusing the LZF format.LzfDecompressor Uncompresses aBufferencoded with the LZF format.LzmaCompressor Compresses aBufferusing the LZMA algorithm.Snappy SnappyCompressor Compresses aBufferusing the Snappy framing format.SnappyDecompressor Uncompresses aBufferencoded with the Snappy framing format.StandardCompressionOptions ZlibCodecFactory Creates a new ZLIB encoder / decoder.ZlibCompressor Compresses aBufferusing the deflate algorithm.ZlibDecompressor Decompress aBufferusing the inflate algorithm.Zstd ZstdCompressor Compresses aBufferusing the Zstandard algorithm.ZstdOptions ZstdOptionsholds 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 AnEncoderExceptionthat is raised when compression failed.DecompressionException ADecoderExceptionthat is raised when decompression failed.