Uses of Interface
io.netty.handler.codec.ByteToMessageDecoder.Cumulator
Packages that use ByteToMessageDecoder.Cumulator
Package
Description
Extensible decoder and its common implementations which deal with the
packet fragmentation and reassembly issue found in a stream-based transport
such as TCP/IP.
-
Uses of ByteToMessageDecoder.Cumulator in io.netty.handler.codec
Fields in io.netty.handler.codec declared as ByteToMessageDecoder.CumulatorModifier and TypeFieldDescriptionstatic final ByteToMessageDecoder.Cumulator
ByteToMessageDecoder.COMPOSITE_CUMULATOR
CumulateByteBuf
s by add them to aCompositeByteBuf
and so do no memory copy whenever possible.private ByteToMessageDecoder.Cumulator
ByteToMessageDecoder.cumulator
static final ByteToMessageDecoder.Cumulator
ByteToMessageDecoder.MERGE_CUMULATOR
Methods in io.netty.handler.codec with parameters of type ByteToMessageDecoder.CumulatorModifier and TypeMethodDescriptionvoid
ByteToMessageDecoder.setCumulator
(ByteToMessageDecoder.Cumulator cumulator) Set theByteToMessageDecoder.Cumulator
to use for cumulate the receivedByteBuf
s. -
Uses of ByteToMessageDecoder.Cumulator in io.netty.handler.ssl
Fields in io.netty.handler.ssl declared as ByteToMessageDecoder.CumulatorModifier and TypeFieldDescription(package private) final ByteToMessageDecoder.Cumulator
SslHandler.SslEngineType.cumulator
When using JDKSSLEngine
, we useByteToMessageDecoder.MERGE_CUMULATOR
because it works only with oneByteBuffer
.Constructors in io.netty.handler.ssl with parameters of type ByteToMessageDecoder.CumulatorModifierConstructorDescriptionprivate
SslEngineType
(boolean wantsDirectBuffer, ByteToMessageDecoder.Cumulator cumulator)