Uses of Interface
io.netty.channel.RecvByteBufAllocator
Packages that use RecvByteBufAllocator
Package
Description
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
Optimized transport for linux which uses EPOLL Edge-Triggered Mode
for maximal performance.
BSD specific transport.
A serial and parallel port communication transport based on RXTX.
Abstract SCTP socket interfaces which extend the core channel API.
Abstract TCP and UDP socket interfaces which extend the core channel API.
Old blocking I/O based socket channel API implementation - recommended for
a small number of connections (< 1000).
UDT Transport.
Unix specific transport.
QUIC implementation
-
Uses of RecvByteBufAllocator in io.netty.channel
Subinterfaces of RecvByteBufAllocator in io.netty.channelModifier and TypeInterfaceDescriptioninterfaceRecvByteBufAllocatorthat 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.interfaceRecvByteBufAllocatorthat 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 RecvByteBufAllocatorModifier and TypeClassDescriptionclassTheRecvByteBufAllocatorthat automatically increases and decreases the predicted buffer size on feed back.classTheRecvByteBufAllocatorthat yields a buffer size prediction based upon decrementing the value from the max bytes per read.classDefault implementation ofMaxMessagesRecvByteBufAllocatorwhich respectsChannelConfig.isAutoRead()and also prevents overflow.classTheRecvByteBufAllocatorthat always yields the same buffer size prediction.final classMaxMessagesRecvByteBufAllocatorimplementation which should be used forServerChannels.Fields in io.netty.channel with type parameters of type RecvByteBufAllocatorModifier and TypeFieldDescriptionstatic final ChannelOption<RecvByteBufAllocator> ChannelOption.RCVBUF_ALLOCATORDeprecated.static final ChannelOption<RecvByteBufAllocator> ChannelOption.RECVBUF_ALLOCATORMethods in io.netty.channel with type parameters of type RecvByteBufAllocatorModifier and TypeMethodDescription<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 RecvByteBufAllocatorModifier and TypeMethodDescriptionChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) Set theRecvByteBufAllocatorwhich is used for the channel to allocate receive buffers.DefaultChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) Constructors in io.netty.channel with parameters of type RecvByteBufAllocatorModifierConstructorDescriptionprotectedDefaultChannelConfig(Channel channel, RecvByteBufAllocator allocator) -
Uses of RecvByteBufAllocator in io.netty.channel.epoll
Methods in io.netty.channel.epoll with parameters of type RecvByteBufAllocatorModifier and TypeMethodDescriptionEpollChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) EpollDatagramChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) EpollDomainDatagramChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) EpollDomainSocketChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) EpollServerChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) EpollServerSocketChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) EpollSocketChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) Constructors in io.netty.channel.epoll with parameters of type RecvByteBufAllocatorModifierConstructorDescriptionprotectedEpollChannelConfig(Channel channel, RecvByteBufAllocator recvByteBufAllocator) -
Uses of RecvByteBufAllocator in io.netty.channel.kqueue
Methods in io.netty.channel.kqueue with parameters of type RecvByteBufAllocatorModifier and TypeMethodDescriptionKQueueChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) KQueueDatagramChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) KQueueDomainDatagramChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) KQueueDomainSocketChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) KQueueServerChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) KQueueServerSocketChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) KQueueSocketChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) -
Uses of RecvByteBufAllocator in io.netty.channel.rxtx
Methods in io.netty.channel.rxtx with parameters of type RecvByteBufAllocatorModifier and TypeMethodDescriptionRxtxChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) Deprecated. -
Uses of RecvByteBufAllocator in io.netty.channel.sctp
Methods in io.netty.channel.sctp with parameters of type RecvByteBufAllocatorModifier and TypeMethodDescriptionDefaultSctpChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) DefaultSctpServerChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) SctpChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) SctpServerChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) -
Uses of RecvByteBufAllocator in io.netty.channel.socket
Methods in io.netty.channel.socket with parameters of type RecvByteBufAllocatorModifier and TypeMethodDescriptionDatagramChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) DefaultDatagramChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) DefaultServerSocketChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) DefaultSocketChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) DuplexChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) ServerSocketChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) SocketChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) -
Uses of RecvByteBufAllocator in io.netty.channel.socket.oio
Methods in io.netty.channel.socket.oio with parameters of type RecvByteBufAllocatorModifier and TypeMethodDescriptionDefaultOioServerSocketChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) Deprecated.DefaultOioSocketChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) Deprecated.OioDatagramChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) Deprecated.OioServerSocketChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) Deprecated.OioSocketChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) Deprecated. -
Uses of RecvByteBufAllocator in io.netty.channel.udt
Methods in io.netty.channel.udt with parameters of type RecvByteBufAllocatorModifier and TypeMethodDescriptionDefaultUdtChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) Deprecated.DefaultUdtServerChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) Deprecated.UdtChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) Deprecated.UdtServerChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) Deprecated. -
Uses of RecvByteBufAllocator in io.netty.channel.unix
Methods in io.netty.channel.unix with parameters of type RecvByteBufAllocatorModifier and TypeMethodDescriptionDomainDatagramChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) DomainSocketChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) -
Uses of RecvByteBufAllocator in io.netty.handler.codec.quic
Methods in io.netty.handler.codec.quic with parameters of type RecvByteBufAllocatorModifier and TypeMethodDescriptionQuicChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator) QuicStreamChannelConfig.setRecvByteBufAllocator(RecvByteBufAllocator allocator)
ChannelOption.RECVBUF_ALLOCATOR.