public class ProtobufVarint32FrameDecoder extends ByteToMessageDecoder
ByteBufs dynamically by the
value of the Google Protocol Buffers
Base
128 Varints integer length field in the message. For example:
BEFORE DECODE (302 bytes) AFTER DECODE (300 bytes) +--------+---------------+ +---------------+ | Length | Protobuf Data |----->| Protobuf Data | | 0xAC02 | (300 bytes) | | (300 bytes) | +--------+---------------+ +---------------+
CodedInputStream,
CodedInputByteBufferNanoByteToMessageDecoder.CumulatorCOMPOSITE_CUMULATOR, MERGE_CUMULATOR| Constructor and Description |
|---|
ProtobufVarint32FrameDecoder()
Creates a new instance with no frame length limit.
|
ProtobufVarint32FrameDecoder(int maxFrameLength)
Creates a new instance with the specified maximum frame length.
|
| 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. |
actualReadableBytes, callDecode, channelInactive, channelRead, channelReadComplete, decodeLast, discardSomeReadBytes, handlerRemoved, handlerRemoved0, internalBuffer, isSingleDecode, setCumulator, setDiscardAfterReads, setSingleDecode, userEventTriggeredchannelActive, channelRegistered, channelUnregistered, channelWritabilityChanged, exceptionCaughtensureNotSharable, handlerAdded, isSharablepublic ProtobufVarint32FrameDecoder()
public ProtobufVarint32FrameDecoder(int maxFrameLength)
maxFrameLength - the maximum length of the frame.
If the length exceeds this value,
TooLongFrameException will be thrown.protected 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 occursCopyright © 2008–2026 The Netty Project. All rights reserved.