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.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty.channel.kqueue BSD specific transport.io.netty.channel.rxtx A serial and parallel port communication transport based on RXTX.io.netty.channel.sctp Abstract SCTP socket interfaces which extend the core channel API.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.channel.udt UDT Transport.io.netty.channel.unix Unix specific transport. -
-
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.class
ServerChannelRecvByteBufAllocator
MaxMessagesRecvByteBufAllocator
implementation which should be used forServerChannel
s.Fields in io.netty.channel with type parameters of type RecvByteBufAllocator Modifier and Type Field Description static ChannelOption<RecvByteBufAllocator>
ChannelOption. RCVBUF_ALLOCATOR
Deprecated.static ChannelOption<RecvByteBufAllocator>
ChannelOption. RECVBUF_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)
Constructors in io.netty.channel with parameters of type RecvByteBufAllocator Constructor Description DefaultChannelConfig(Channel channel, RecvByteBufAllocator allocator)
-
Uses of RecvByteBufAllocator in io.netty.channel.epoll
Methods in io.netty.channel.epoll with parameters of type RecvByteBufAllocator Modifier and Type Method Description EpollChannelConfig
EpollChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
EpollDatagramChannelConfig
EpollDatagramChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
EpollDomainDatagramChannelConfig
EpollDomainDatagramChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
EpollDomainSocketChannelConfig
EpollDomainSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
EpollServerChannelConfig
EpollServerChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
EpollServerSocketChannelConfig
EpollServerSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
EpollSocketChannelConfig
EpollSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
Constructors in io.netty.channel.epoll with parameters of type RecvByteBufAllocator Constructor Description EpollChannelConfig(Channel channel, RecvByteBufAllocator recvByteBufAllocator)
-
Uses of RecvByteBufAllocator in io.netty.channel.kqueue
Methods in io.netty.channel.kqueue with parameters of type RecvByteBufAllocator Modifier and Type Method Description KQueueChannelConfig
KQueueChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
KQueueDatagramChannelConfig
KQueueDatagramChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
KQueueDomainDatagramChannelConfig
KQueueDomainDatagramChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
KQueueDomainSocketChannelConfig
KQueueDomainSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
KQueueServerChannelConfig
KQueueServerChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
KQueueServerSocketChannelConfig
KQueueServerSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
KQueueSocketChannelConfig
KQueueSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
-
Uses of RecvByteBufAllocator in io.netty.channel.rxtx
Methods in io.netty.channel.rxtx with parameters of type RecvByteBufAllocator Modifier and Type Method Description RxtxChannelConfig
RxtxChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
Deprecated. -
Uses of RecvByteBufAllocator in io.netty.channel.sctp
Methods in io.netty.channel.sctp with parameters of type RecvByteBufAllocator Modifier and Type Method Description SctpChannelConfig
DefaultSctpChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
SctpServerChannelConfig
DefaultSctpServerChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
SctpChannelConfig
SctpChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
SctpServerChannelConfig
SctpServerChannelConfig. setRecvByteBufAllocator(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)
DuplexChannelConfig
DuplexChannelConfig. 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 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.channel.udt
Methods in io.netty.channel.udt with parameters of type RecvByteBufAllocator Modifier and Type Method Description UdtChannelConfig
DefaultUdtChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
Deprecated.UdtServerChannelConfig
DefaultUdtServerChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
Deprecated.UdtChannelConfig
UdtChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
Deprecated.UdtServerChannelConfig
UdtServerChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
Deprecated. -
Uses of RecvByteBufAllocator in io.netty.channel.unix
Methods in io.netty.channel.unix with parameters of type RecvByteBufAllocator Modifier and Type Method Description DomainDatagramChannelConfig
DomainDatagramChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
DomainSocketChannelConfig
DomainSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
-