Uses of Interface
io.netty.util.UncheckedBooleanSupplier
-
Packages that use UncheckedBooleanSupplier 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.util Utility classes used across multiple packages. -
-
Uses of UncheckedBooleanSupplier in io.netty.channel
Fields in io.netty.channel declared as UncheckedBooleanSupplier Modifier and Type Field Description private UncheckedBooleanSupplier
DefaultMaxBytesRecvByteBufAllocator.HandleImpl. defaultMaybeMoreSupplier
private UncheckedBooleanSupplier
DefaultMaxMessagesRecvByteBufAllocator.MaxMessageHandle. defaultMaybeMoreSupplier
Methods in io.netty.channel with parameters of type UncheckedBooleanSupplier Modifier and Type Method Description boolean
DefaultMaxBytesRecvByteBufAllocator.HandleImpl. continueReading(UncheckedBooleanSupplier maybeMoreDataSupplier)
boolean
DefaultMaxMessagesRecvByteBufAllocator.MaxMessageHandle. continueReading(UncheckedBooleanSupplier maybeMoreDataSupplier)
boolean
RecvByteBufAllocator.ExtendedHandle. continueReading(UncheckedBooleanSupplier maybeMoreDataSupplier)
Same asRecvByteBufAllocator.Handle.continueReading()
except "more data" is determined by the supplier parameter. -
Uses of UncheckedBooleanSupplier in io.netty.channel.epoll
Fields in io.netty.channel.epoll declared as UncheckedBooleanSupplier Modifier and Type Field Description private UncheckedBooleanSupplier
EpollRecvByteAllocatorHandle. defaultMaybeMoreDataSupplier
Methods in io.netty.channel.epoll with parameters of type UncheckedBooleanSupplier Modifier and Type Method Description boolean
EpollRecvByteAllocatorHandle. continueReading(UncheckedBooleanSupplier maybeMoreDataSupplier)
-
Uses of UncheckedBooleanSupplier in io.netty.channel.kqueue
Fields in io.netty.channel.kqueue declared as UncheckedBooleanSupplier Modifier and Type Field Description private UncheckedBooleanSupplier
KQueueRecvByteAllocatorHandle. defaultMaybeMoreDataSupplier
Methods in io.netty.channel.kqueue with parameters of type UncheckedBooleanSupplier Modifier and Type Method Description boolean
KQueueRecvByteAllocatorHandle. continueReading(UncheckedBooleanSupplier maybeMoreDataSupplier)
-
Uses of UncheckedBooleanSupplier in io.netty.util
Fields in io.netty.util declared as UncheckedBooleanSupplier Modifier and Type Field Description static UncheckedBooleanSupplier
UncheckedBooleanSupplier. FALSE_SUPPLIER
A supplier which always returnsfalse
and never throws.static UncheckedBooleanSupplier
UncheckedBooleanSupplier. TRUE_SUPPLIER
A supplier which always returnstrue
and never throws.
-