public class JdkZlibDecoder extends ZlibDecoder
ByteBuf using the inflate algorithm.maxAllocation| Constructor and Description |
|---|
JdkZlibDecoder()
Creates a new instance with the default wrapper (
ZlibWrapper.ZLIB). |
JdkZlibDecoder(boolean decompressConcatenated) |
JdkZlibDecoder(boolean decompressConcatenated,
int maxAllocation) |
JdkZlibDecoder(byte[] dictionary)
Creates a new instance with the specified preset dictionary.
|
JdkZlibDecoder(byte[] dictionary,
int maxAllocation)
Creates a new instance with the specified preset dictionary and maximum buffer allocation.
|
JdkZlibDecoder(int maxAllocation)
Creates a new instance with the default wrapper (
ZlibWrapper.ZLIB)
and the specified maximum buffer allocation. |
JdkZlibDecoder(ZlibWrapper wrapper)
Creates a new instance with the specified wrapper.
|
JdkZlibDecoder(ZlibWrapper wrapper,
boolean decompressConcatenated) |
JdkZlibDecoder(ZlibWrapper wrapper,
boolean decompressConcatenated,
int maxAllocation) |
JdkZlibDecoder(ZlibWrapper wrapper,
int maxAllocation)
Creates a new instance with the specified wrapper and maximum buffer allocation.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
decode(io.netty.channel.ChannelHandlerContext ctx,
io.netty.buffer.ByteBuf in,
List<Object> out) |
protected void |
decompressionBufferExhausted(io.netty.buffer.ByteBuf buffer)
Called when the decompression buffer cannot be expanded further.
|
protected void |
handlerRemoved0(io.netty.channel.ChannelHandlerContext ctx) |
boolean |
isClosed()
Returns
true if and only if the end of the compressed stream
has been reached. |
prepareDecompressBufferactualReadableBytes, callDecode, channelInactive, channelRead, channelReadComplete, decodeLast, discardSomeReadBytes, handlerRemoved, internalBuffer, isSingleDecode, setCumulator, setDiscardAfterReads, setSingleDecode, userEventTriggeredchannelActive, channelRegistered, channelUnregistered, channelWritabilityChanged, exceptionCaughtensureNotSharable, handlerAdded, isSharablepublic JdkZlibDecoder()
ZlibWrapper.ZLIB).public JdkZlibDecoder(int maxAllocation)
ZlibWrapper.ZLIB)
and the specified maximum buffer allocation.maxAllocation - Maximum size of the decompression buffer. Must be >= 0.
If zero, maximum size is decided by the ByteBufAllocator.public JdkZlibDecoder(byte[] dictionary)
ZlibWrapper.ZLIB because it is the only format that
supports the preset dictionary.public JdkZlibDecoder(byte[] dictionary,
int maxAllocation)
ZlibWrapper.ZLIB because it is the only format that
supports the preset dictionary.maxAllocation - Maximum size of the decompression buffer. Must be >= 0.
If zero, maximum size is decided by the ByteBufAllocator.public JdkZlibDecoder(ZlibWrapper wrapper)
ZlibWrapper.GZIP, ZlibWrapper.ZLIB and ZlibWrapper.NONE are
supported atm.public JdkZlibDecoder(ZlibWrapper wrapper, int maxAllocation)
ZlibWrapper.GZIP, ZlibWrapper.ZLIB and ZlibWrapper.NONE are
supported atm.maxAllocation - Maximum size of the decompression buffer. Must be >= 0.
If zero, maximum size is decided by the ByteBufAllocator.public JdkZlibDecoder(ZlibWrapper wrapper, boolean decompressConcatenated)
public JdkZlibDecoder(ZlibWrapper wrapper, boolean decompressConcatenated, int maxAllocation)
public JdkZlibDecoder(boolean decompressConcatenated)
public JdkZlibDecoder(boolean decompressConcatenated,
int maxAllocation)
public boolean isClosed()
ZlibDecodertrue if and only if the end of the compressed stream
has been reached.isClosed in class ZlibDecoderprotected void decode(io.netty.channel.ChannelHandlerContext ctx,
io.netty.buffer.ByteBuf in,
List<Object> out)
throws Exception
decode in class io.netty.handler.codec.ByteToMessageDecoderExceptionprotected void decompressionBufferExhausted(io.netty.buffer.ByteBuf buffer)
ZlibDecoderDecompressionException is thrown, such as log the
data that was decompressed so far.decompressionBufferExhausted in class ZlibDecoderCopyright © 2008–2024 The Netty Project. All rights reserved.