Uses of Interface
io.netty.util.IntSupplier
-
Packages that use IntSupplier 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.nio NIO-based channel API implementation - recommended for a large number of connections (>= 1000).io.netty.util.concurrent Utility classes for concurrent / async tasks. -
-
Uses of IntSupplier in io.netty.channel
Methods in io.netty.channel with parameters of type IntSupplier Modifier and Type Method Description intDefaultSelectStrategy. calculateStrategy(IntSupplier selectSupplier, boolean hasTasks)intSelectStrategy. calculateStrategy(IntSupplier selectSupplier, boolean hasTasks)TheSelectStrategycan be used to steer the outcome of a potential select call. -
Uses of IntSupplier in io.netty.channel.epoll
Fields in io.netty.channel.epoll declared as IntSupplier Modifier and Type Field Description private IntSupplierEpollEventLoop. selectNowSupplier -
Uses of IntSupplier in io.netty.channel.kqueue
Fields in io.netty.channel.kqueue declared as IntSupplier Modifier and Type Field Description private IntSupplierKQueueEventLoop. selectNowSupplier -
Uses of IntSupplier in io.netty.channel.nio
Fields in io.netty.channel.nio declared as IntSupplier Modifier and Type Field Description private IntSupplierNioEventLoop. selectNowSupplier -
Uses of IntSupplier in io.netty.util.concurrent
Methods in io.netty.util.concurrent with parameters of type IntSupplier Modifier and Type Method Description intMpscAtomicIntegerArrayQueue. fill(int limit, IntSupplier supplier)intMpscIntQueue. fill(int limit, IntSupplier supplier)Add up to the given limit of elements to this queue, from the given supplier.
-