public class JdkZlibDecoder extends ZlibDecoder
ByteBuf using the inflate algorithm.ByteToMessageDecoder.CumulatorChannelHandler.SharablemaxAllocationCOMPOSITE_CUMULATOR, MERGE_CUMULATOR| Constructor and Description |
|---|
JdkZlibDecoder()
Deprecated.
Use
JdkZlibDecoder(int). |
JdkZlibDecoder(boolean decompressConcatenated)
Deprecated.
|
JdkZlibDecoder(boolean decompressConcatenated,
int maxAllocation) |
JdkZlibDecoder(byte[] dictionary)
Deprecated.
|
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)
Deprecated.
|
JdkZlibDecoder(ZlibWrapper wrapper,
boolean decompressConcatenated)
Deprecated.
|
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 |
|---|---|
void |
channelReadComplete(ChannelHandlerContext ctx)
Calls
ChannelHandlerContext.fireChannelReadComplete() to forward
to the next ChannelInboundHandler in the ChannelPipeline. |
protected void |
decode(ChannelHandlerContext ctx,
ByteBuf in,
List<Object> out)
Decode the from one
ByteBuf to an other. |
protected void |
decompressionBufferExhausted(ByteBuf buffer)
Called when the decompression buffer cannot be expanded further.
|
protected void |
handlerRemoved0(ChannelHandlerContext ctx)
Gets called after the
ByteToMessageDecoder was removed from the actual context and it doesn't handle
events anymore. |
boolean |
isClosed()
Returns
true if and only if the end of the compressed stream
has been reached. |
prepareDecompressBufferactualReadableBytes, callDecode, channelInactive, channelRead, decodeLast, discardSomeReadBytes, handlerRemoved, internalBuffer, isSingleDecode, setCumulator, setDiscardAfterReads, setSingleDecode, userEventTriggeredchannelActive, channelRegistered, channelUnregistered, channelWritabilityChanged, exceptionCaughtensureNotSharable, handlerAdded, isSharableclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waithandlerAdded@Deprecated public JdkZlibDecoder()
JdkZlibDecoder(int).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.@Deprecated public JdkZlibDecoder(byte[] dictionary)
JdkZlibDecoder(byte[], int).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.@Deprecated public JdkZlibDecoder(ZlibWrapper wrapper)
JdkZlibDecoder(ZlibWrapper, int).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.@Deprecated public JdkZlibDecoder(ZlibWrapper wrapper, boolean decompressConcatenated)
JdkZlibDecoder(ZlibWrapper, boolean, int).public JdkZlibDecoder(ZlibWrapper wrapper, boolean decompressConcatenated, int maxAllocation)
@Deprecated public JdkZlibDecoder(boolean decompressConcatenated)
JdkZlibDecoder(boolean, int).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(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) throws Exception
ByteToMessageDecoderByteBuf to an other. This method will be called till either the input
ByteBuf has nothing to read when return from this method or till nothing was read from the input
ByteBuf.decode in class ByteToMessageDecoderctx - the ChannelHandlerContext which this ByteToMessageDecoder belongs toin - the ByteBuf from which to read dataout - the List to which decoded messages should be addedException - is thrown if an error occursprotected void decompressionBufferExhausted(ByteBuf buffer)
ZlibDecoderDecompressionException is thrown, such as log the
data that was decompressed so far.decompressionBufferExhausted in class ZlibDecoderprotected void handlerRemoved0(ChannelHandlerContext ctx) throws Exception
ByteToMessageDecoderByteToMessageDecoder was removed from the actual context and it doesn't handle
events anymore.handlerRemoved0 in class ByteToMessageDecoderExceptionpublic void channelReadComplete(ChannelHandlerContext ctx) throws Exception
ChannelInboundHandlerAdapterChannelHandlerContext.fireChannelReadComplete() to forward
to the next ChannelInboundHandler in the ChannelPipeline.
Sub-classes may override this method to change behavior.channelReadComplete in interface ChannelInboundHandlerchannelReadComplete in class ByteToMessageDecoderExceptionCopyright © 2008–2025 The Netty Project. All rights reserved.