Uses of Interface
io.netty.channel.MaxMessagesRecvByteBufAllocator
-
Packages that use MaxMessagesRecvByteBufAllocator Package Description io.netty.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel. -
-
Uses of MaxMessagesRecvByteBufAllocator in io.netty.channel
Classes in io.netty.channel that implement MaxMessagesRecvByteBufAllocator Modifier and Type Class Description class
AdaptiveRecvByteBufAllocator
TheRecvByteBufAllocator
that automatically increases and decreases the predicted buffer size on feed back.class
DefaultMaxMessagesRecvByteBufAllocator
Default implementation ofMaxMessagesRecvByteBufAllocator
which respectsChannelConfig.isAutoRead()
and also prevents overflow.class
FixedRecvByteBufAllocator
TheRecvByteBufAllocator
that always yields the same buffer size prediction.class
ServerChannelRecvByteBufAllocator
MaxMessagesRecvByteBufAllocator
implementation which should be used forServerChannel
s.Methods in io.netty.channel that return MaxMessagesRecvByteBufAllocator Modifier and Type Method Description MaxMessagesRecvByteBufAllocator
DefaultMaxMessagesRecvByteBufAllocator. maxMessagesPerRead(int maxMessagesPerRead)
MaxMessagesRecvByteBufAllocator
MaxMessagesRecvByteBufAllocator. maxMessagesPerRead(int maxMessagesPerRead)
Sets the maximum number of messages to read per read loop.
-