Uses of Interface
io.netty.channel.RecvByteBufAllocator
-
Packages that use RecvByteBufAllocator Package Description io.netty.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.io.netty.channel.socket Abstract TCP and UDP socket interfaces which extend the core channel API.io.netty.channel.socket.oio Old blocking I/O based socket channel API implementation - recommended for a small number of connections (< 1000).io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames. -
-
Uses of RecvByteBufAllocator in io.netty.channel
Subinterfaces of RecvByteBufAllocator in io.netty.channel Modifier and Type Interface Description interface
MaxBytesRecvByteBufAllocator
RecvByteBufAllocator
that limits a read operation based upon a maximum value per individual read and a maximum amount when a read operation is attempted by the event loop.interface
MaxMessagesRecvByteBufAllocator
RecvByteBufAllocator
that limits the number of read operations that will be attempted when a read operation is attempted by the event loop.Classes in io.netty.channel that implement RecvByteBufAllocator Modifier and Type Class Description class
AdaptiveRecvByteBufAllocator
TheRecvByteBufAllocator
that automatically increases and decreases the predicted buffer size on feed back.class
DefaultMaxBytesRecvByteBufAllocator
TheRecvByteBufAllocator
that yields a buffer size prediction based upon decrementing the value from the max bytes per read.class
DefaultMaxMessagesRecvByteBufAllocator
Default implementation ofMaxMessagesRecvByteBufAllocator
which respectsChannelConfig.isAutoRead()
and also prevents overflow.class
FixedRecvByteBufAllocator
TheRecvByteBufAllocator
that always yields the same buffer size prediction.Fields in io.netty.channel declared as RecvByteBufAllocator Modifier and Type Field Description private RecvByteBufAllocator
DefaultChannelConfig. rcvBufAllocator
Fields in io.netty.channel with type parameters of type RecvByteBufAllocator Modifier and Type Field Description static ChannelOption<RecvByteBufAllocator>
ChannelOption. RCVBUF_ALLOCATOR
Methods in io.netty.channel with type parameters of type RecvByteBufAllocator Modifier and Type Method Description <T extends RecvByteBufAllocator>
TChannelConfig. getRecvByteBufAllocator()
ReturnsRecvByteBufAllocator
which is used for the channel to allocate receive buffers.<T extends RecvByteBufAllocator>
TDefaultChannelConfig. getRecvByteBufAllocator()
Methods in io.netty.channel with parameters of type RecvByteBufAllocator Modifier and Type Method Description ChannelConfig
ChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
Set theRecvByteBufAllocator
which is used for the channel to allocate receive buffers.ChannelConfig
DefaultChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
private void
DefaultChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator, ChannelMetadata metadata)
Set theRecvByteBufAllocator
which is used for the channel to allocate receive buffers.Constructors in io.netty.channel with parameters of type RecvByteBufAllocator Constructor Description DefaultChannelConfig(Channel channel, RecvByteBufAllocator allocator)
-
Uses of RecvByteBufAllocator in io.netty.channel.socket
Methods in io.netty.channel.socket with parameters of type RecvByteBufAllocator Modifier and Type Method Description DatagramChannelConfig
DatagramChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
DatagramChannelConfig
DefaultDatagramChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
ServerSocketChannelConfig
DefaultServerSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
SocketChannelConfig
DefaultSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
ServerSocketChannelConfig
ServerSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
SocketChannelConfig
SocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
-
Uses of RecvByteBufAllocator in io.netty.channel.socket.oio
Methods in io.netty.channel.socket.oio with parameters of type RecvByteBufAllocator Modifier and Type Method Description OioDatagramChannelConfig
DefaultOioDatagramChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
OioServerSocketChannelConfig
DefaultOioServerSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
Deprecated.OioSocketChannelConfig
DefaultOioSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
Deprecated.OioDatagramChannelConfig
OioDatagramChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
Deprecated.OioServerSocketChannelConfig
OioServerSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
Deprecated.OioSocketChannelConfig
OioSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
Deprecated. -
Uses of RecvByteBufAllocator in io.netty.handler.codec.http2
Methods in io.netty.handler.codec.http2 with parameters of type RecvByteBufAllocator Modifier and Type Method Description ChannelConfig
AbstractHttp2StreamChannel.Http2StreamChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
-