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.io.netty.handler.codec.quic QUIC implementation -
-
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.epoll
Methods in io.netty.channel.epoll with parameters of type RecvByteBufAllocator Modifier and Type Method Description EpollChannelConfigEpollChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)EpollDatagramChannelConfigEpollDatagramChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)EpollDomainDatagramChannelConfigEpollDomainDatagramChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)EpollDomainSocketChannelConfigEpollDomainSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)EpollServerChannelConfigEpollServerChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)EpollServerSocketChannelConfigEpollServerSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)EpollSocketChannelConfigEpollSocketChannelConfig. 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 KQueueChannelConfigKQueueChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)KQueueDatagramChannelConfigKQueueDatagramChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)KQueueDomainDatagramChannelConfigKQueueDomainDatagramChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)KQueueDomainSocketChannelConfigKQueueDomainSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)KQueueServerChannelConfigKQueueServerChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)KQueueServerSocketChannelConfigKQueueServerSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)KQueueSocketChannelConfigKQueueSocketChannelConfig. 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 RxtxChannelConfigRxtxChannelConfig. 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 SctpChannelConfigDefaultSctpChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)SctpServerChannelConfigDefaultSctpServerChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)SctpChannelConfigSctpChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)SctpServerChannelConfigSctpServerChannelConfig. 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 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. -
Uses of RecvByteBufAllocator in io.netty.channel.udt
Methods in io.netty.channel.udt with parameters of type RecvByteBufAllocator Modifier and Type Method Description UdtChannelConfigDefaultUdtChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)Deprecated.UdtServerChannelConfigDefaultUdtServerChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)Deprecated.UdtChannelConfigUdtChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)Deprecated.UdtServerChannelConfigUdtServerChannelConfig. 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 DomainDatagramChannelConfigDomainDatagramChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)DomainSocketChannelConfigDomainSocketChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator) -
Uses of RecvByteBufAllocator in io.netty.handler.codec.quic
Methods in io.netty.handler.codec.quic with parameters of type RecvByteBufAllocator Modifier and Type Method Description QuicChannelConfigQuicChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)QuicStreamChannelConfigQuicStreamChannelConfig. setRecvByteBufAllocator(RecvByteBufAllocator allocator)
-