Uses of Interface
io.netty5.channel.RecvBufferAllocator.Handle
-
Packages that use RecvBufferAllocator.Handle Package Description io.netty5.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.io.netty5.channel.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty5.channel.kqueue BSD specific transport.io.netty5.channel.nio NIO-based channel API implementation - recommended for a large number of connections (>= 1000).io.netty5.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000). -
-
Uses of RecvBufferAllocator.Handle in io.netty5.channel
Classes in io.netty5.channel that implement RecvBufferAllocator.Handle Modifier and Type Class Description class
DefaultMaxMessagesRecvBufferAllocator.MaxMessageHandle
Focuses on enforcing the maximum messages per read condition forDefaultMaxMessagesRecvBufferAllocator.MaxMessageHandle.continueReading(boolean)
.Methods in io.netty5.channel that return RecvBufferAllocator.Handle Modifier and Type Method Description RecvBufferAllocator.Handle
AdaptiveRecvBufferAllocator. newHandle()
RecvBufferAllocator.Handle
DefaultMaxBytesRecvBufferAllocator. newHandle()
RecvBufferAllocator.Handle
FixedRecvBufferAllocator. newHandle()
RecvBufferAllocator.Handle
RecvBufferAllocator. newHandle()
Creates a new handle.RecvBufferAllocator.Handle
ServerChannelRecvBufferAllocator. newHandle()
protected RecvBufferAllocator.Handle
AbstractChannel. recvBufAllocHandle()
Method parameters in io.netty5.channel with type arguments of type RecvBufferAllocator.Handle Modifier and Type Method Description boolean
DefaultMaxMessagesRecvBufferAllocator.MaxMessageHandle. continueReading(boolean autoRead, Predicate<RecvBufferAllocator.Handle> maybeMoreDataSupplier)
boolean
RecvBufferAllocator.Handle. continueReading(boolean autoRead, Predicate<RecvBufferAllocator.Handle> maybeMoreDataPredicate)
Same ascontinueReading(boolean)
except "more data" is determined by the supplier parameter. -
Uses of RecvBufferAllocator.Handle in io.netty5.channel.epoll
Methods in io.netty5.channel.epoll with parameters of type RecvBufferAllocator.Handle Modifier and Type Method Description protected void
EpollDatagramChannel. epollInReady(RecvBufferAllocator.Handle handle, BufferAllocator recvBufferAllocator, boolean receivedRdHup)
protected void
EpollServerSocketChannel. epollInReady(RecvBufferAllocator.Handle allocHandle, BufferAllocator recvBufferAllocator, boolean receivedRdHup)
protected void
EpollSocketChannel. epollInReady(RecvBufferAllocator.Handle handle, BufferAllocator recvBufferAllocator, boolean receivedRdHup)
protected boolean
EpollDatagramChannel. maybeMoreDataToRead(RecvBufferAllocator.Handle handle)
protected boolean
EpollServerSocketChannel. maybeMoreDataToRead(RecvBufferAllocator.Handle handle)
protected boolean
EpollSocketChannel. maybeMoreDataToRead(RecvBufferAllocator.Handle handle)
-
Uses of RecvBufferAllocator.Handle in io.netty5.channel.kqueue
Methods in io.netty5.channel.kqueue that return RecvBufferAllocator.Handle Modifier and Type Method Description RecvBufferAllocator.Handle
KQueueGuessRecvBufferAllocator. newHandle()
-
Uses of RecvBufferAllocator.Handle in io.netty5.channel.nio
Methods in io.netty5.channel.nio with parameters of type RecvBufferAllocator.Handle Modifier and Type Method Description protected boolean
AbstractNioMessageChannel. continueReading(RecvBufferAllocator.Handle allocHandle)
-
Uses of RecvBufferAllocator.Handle in io.netty5.channel.socket.nio
Methods in io.netty5.channel.socket.nio with parameters of type RecvBufferAllocator.Handle Modifier and Type Method Description protected boolean
NioDatagramChannel. continueReading(RecvBufferAllocator.Handle allocHandle)
-