public class JdkZlibDecoder extends ZlibDecoder
ByteBuf
using the inflate algorithm.ByteToMessageDecoder.Cumulator
ChannelHandler.Sharable
maxAllocation
COMPOSITE_CUMULATOR, MERGE_CUMULATOR
构造器和说明 |
---|
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.
|
限定符和类型 | 方法和说明 |
---|---|
protected void |
decode(ChannelHandlerContext ctx,
ByteBuf in,
java.util.List<java.lang.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. |
prepareDecompressBuffer
actualReadableBytes, callDecode, channelInactive, channelRead, channelReadComplete, decodeLast, discardSomeReadBytes, handlerRemoved, internalBuffer, isSingleDecode, setCumulator, setDiscardAfterReads, setSingleDecode, userEventTriggered
channelActive, channelRegistered, channelUnregistered, channelWritabilityChanged, exceptionCaught
ensureNotSharable, handlerAdded, isSharable
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
handlerAdded
public 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()
ZlibDecoder
true
if and only if the end of the compressed stream
has been reached.isClosed
在类中 ZlibDecoder
protected void decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out) throws java.lang.Exception
ByteToMessageDecoder
ByteBuf
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
在类中 ByteToMessageDecoder
ctx
- the ChannelHandlerContext
which this ByteToMessageDecoder
belongs toin
- the ByteBuf
from which to read dataout
- the List
to which decoded messages should be addedjava.lang.Exception
- is thrown if an error occursprotected void decompressionBufferExhausted(ByteBuf buffer)
ZlibDecoder
DecompressionException
is thrown, such as log the
data that was decompressed so far.protected void handlerRemoved0(ChannelHandlerContext ctx) throws java.lang.Exception
ByteToMessageDecoder
ByteToMessageDecoder
was removed from the actual context and it doesn't handle
events anymore.handlerRemoved0
在类中 ByteToMessageDecoder
java.lang.Exception