public class Bzip2Decoder extends ByteToMessageDecoder
ByteBuf encoded with the Bzip2 format.
See Bzip2.ByteToMessageDecoder.CumulatorCOMPOSITE_CUMULATOR, MERGE_CUMULATOR| Constructor and Description |
|---|
Bzip2Decoder() |
| Modifier and Type | Method and Description |
|---|---|
protected void |
decode(io.netty.channel.ChannelHandlerContext ctx,
io.netty.buffer.ByteBuf in,
List<Object> out)
Decode the from one
ByteBuf to an other. |
boolean |
isClosed()
Returns
true if and only if the end of the compressed stream
has been reached. |
actualReadableBytes, callDecode, channelInactive, channelRead, channelReadComplete, decodeLast, discardSomeReadBytes, handlerRemoved, handlerRemoved0, internalBuffer, isSingleDecode, setCumulator, setDiscardAfterReads, setSingleDecode, userEventTriggeredchannelActive, channelRegistered, channelUnregistered, channelWritabilityChanged, exceptionCaughtensureNotSharable, handlerAdded, isSharableprotected void decode(io.netty.channel.ChannelHandlerContext ctx,
io.netty.buffer.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 occurspublic boolean isClosed()
true if and only if the end of the compressed stream
has been reached.Copyright © 2008–2019 The Netty Project. All rights reserved.