Uses of Interface
io.netty.handler.codec.ByteToMessageDecoder.Cumulator
-
Packages that use ByteToMessageDecoder.Cumulator Package Description io.netty.handler.codec 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.io.netty.handler.ssl SSL · TLS implementation based onSSLEngine
-
-
Uses of ByteToMessageDecoder.Cumulator in io.netty.handler.codec
Fields in io.netty.handler.codec declared as ByteToMessageDecoder.Cumulator Modifier and Type Field Description static 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 ByteToMessageDecoder.Cumulator
ByteToMessageDecoder. MERGE_CUMULATOR
Methods in io.netty.handler.codec with parameters of type ByteToMessageDecoder.Cumulator Modifier and Type Method Description void
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.Cumulator Modifier and Type Field Description (package private) 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.Cumulator Constructor Description SslEngineType(boolean wantsDirectBuffer, ByteToMessageDecoder.Cumulator cumulator)
-