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). -
-
Uses of RecvByteBufAllocator in io.netty.channel
Subinterfaces of RecvByteBufAllocator in io.netty.channel Modifier and Type Interface Description interfaceMaxBytesRecvByteBufAllocatorRecvByteBufAllocatorthat 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.interfaceMaxMessagesRecvByteBufAllocatorRecvByteBufAllocatorthat 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 classAdaptiveRecvByteBufAllocatorTheRecvByteBufAllocatorthat automatically increases and decreases the predicted buffer size on feed back.classDefaultMaxBytesRecvByteBufAllocatorTheRecvByteBufAllocatorthat yields a buffer size prediction based upon decrementing the value from the max bytes per read.classDefaultMaxMessagesRecvByteBufAllocatorDefault implementation ofMaxMessagesRecvByteBufAllocatorwhich respectsChannelConfig.isAutoRead()and also prevents overflow.classFixedRecvByteBufAllocatorTheRecvByteBufAllocatorthat always yields the same buffer size prediction.classServerChannelRecvByteBufAllocatorMaxMessagesRecvByteBufAllocatorimplementation which should be used forServerChannels.Fields in io.netty.channel with type parameters of type RecvByteBufAllocator Modifier and Type Field Description static ChannelOption<RecvByteBufAllocator>ChannelOption. RCVBUF_ALLOCATORDeprecated.static ChannelOption<RecvByteBufAllocator>ChannelOption. RECVBUF_ALLOCATORMethods in io.netty.channel with type parameters of type RecvByteBufAllocator Modifier and Type Method Description <T extends RecvByteBufAllocator>
TChannelConfig. getRecvByteBufAllocator()ReturnsRecvByteBufAllocatorwhich 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 ChannelConfigChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)Set theRecvByteBufAllocatorwhich is used for the channel to allocate receive buffers.ChannelConfigDefaultChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)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 DatagramChannelConfigDatagramChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)DatagramChannelConfigDefaultDatagramChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)ServerSocketChannelConfigDefaultServerSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)SocketChannelConfigDefaultSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)DuplexChannelConfigDuplexChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)ServerSocketChannelConfigServerSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)SocketChannelConfigSocketChannelConfig. 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 OioServerSocketChannelConfigDefaultOioServerSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)Deprecated.OioSocketChannelConfigDefaultOioSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)Deprecated.OioDatagramChannelConfigOioDatagramChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)Deprecated.OioServerSocketChannelConfigOioServerSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)Deprecated.OioSocketChannelConfigOioSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)Deprecated.
-