Package io.netty.channel
Interface RecvByteBufAllocator
- All Known Subinterfaces:
MaxBytesRecvByteBufAllocator
,MaxMessagesRecvByteBufAllocator
- All Known Implementing Classes:
AdaptiveRecvByteBufAllocator
,DefaultMaxBytesRecvByteBufAllocator
,DefaultMaxMessagesRecvByteBufAllocator
,FixedRecvByteBufAllocator
,ServerChannelRecvByteBufAllocator
public interface RecvByteBufAllocator
Allocates a new receive buffer whose capacity is probably large enough to read all inbound data and small enough
not to waste its space.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic class
ARecvByteBufAllocator.Handle
which delegates all call to some otherRecvByteBufAllocator.Handle
.static interface
static interface
Deprecated. -
Method Summary
-
Method Details
-
newHandle
RecvByteBufAllocator.Handle newHandle()Creates a new handle. The handle provides the actual operations and keeps the internal information which is required for predicting an optimal buffer capacity.
-
RecvByteBufAllocator.ExtendedHandle
.