Class | Description |
---|---|
Bzip2Decoder |
Uncompresses a
ByteBuf encoded with the Bzip2 format. |
Bzip2Encoder |
Compresses a
ByteBuf using the Bzip2 algorithm. |
FastLzFrameDecoder |
Uncompresses a
ByteBuf encoded by FastLzFrameEncoder using the FastLZ algorithm. |
FastLzFrameEncoder |
Compresses a
ByteBuf using the FastLZ algorithm. |
JdkZlibDecoder |
Decompress a
ByteBuf using the inflate algorithm. |
JdkZlibEncoder |
Compresses a
ByteBuf using the deflate algorithm. |
JZlibDecoder | |
JZlibEncoder |
Compresses a
ByteBuf using the deflate algorithm. |
Lz4FrameDecoder |
Uncompresses a
ByteBuf encoded with the LZ4 format. |
Lz4FrameEncoder |
Compresses a
ByteBuf using the LZ4 format. |
LzfDecoder |
Uncompresses a
ByteBuf encoded with the LZF format. |
LzfEncoder |
Compresses a
ByteBuf using the LZF format. |
LzmaFrameEncoder |
Compresses a
ByteBuf using the LZMA algorithm. |
Snappy | |
SnappyFramedDecoder | Deprecated
Use
SnappyFrameDecoder instead. |
SnappyFrameDecoder |
Uncompresses a
ByteBuf encoded with the Snappy framing format. |
SnappyFramedEncoder | Deprecated
Use
SnappyFrameEncoder instead. |
SnappyFrameEncoder |
Compresses a
ByteBuf using the Snappy framing format. |
ZlibCodecFactory |
Creates a new
ZlibEncoder and a new ZlibDecoder . |
ZlibDecoder |
Decompresses a
ByteBuf using the deflate algorithm. |
ZlibEncoder |
Compresses a
ByteBuf using the deflate algorithm. |
Enum | Description |
---|---|
ZlibWrapper |
The container file formats that wrap the stream compressed by the DEFLATE
algorithm.
|
Exception | Description |
---|---|
CompressionException |
An
EncoderException that is raised when compression failed. |
DecompressionException |
A
DecoderException that is raised when decompression failed. |
Copyright © 2008–2017 The Netty Project. All rights reserved.