Uses of Interface
io.netty.channel.SelectStrategy
-
Packages that use SelectStrategy 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). -
-
Uses of SelectStrategy in io.netty.channel
Classes in io.netty.channel that implement SelectStrategy Modifier and Type Class Description (package private) class
DefaultSelectStrategy
Default select strategy.Fields in io.netty.channel declared as SelectStrategy Modifier and Type Field Description (package private) static SelectStrategy
DefaultSelectStrategy. INSTANCE
Methods in io.netty.channel that return SelectStrategy Modifier and Type Method Description SelectStrategy
DefaultSelectStrategyFactory. newSelectStrategy()
SelectStrategy
SelectStrategyFactory. newSelectStrategy()
Creates a newSelectStrategy
. -
Uses of SelectStrategy in io.netty.channel.epoll
Fields in io.netty.channel.epoll declared as SelectStrategy Modifier and Type Field Description private SelectStrategy
EpollEventLoop. selectStrategy
Constructors in io.netty.channel.epoll with parameters of type SelectStrategy Constructor Description EpollEventLoop(EventLoopGroup parent, java.util.concurrent.Executor executor, int maxEvents, SelectStrategy strategy, RejectedExecutionHandler rejectedExecutionHandler, EventLoopTaskQueueFactory taskQueueFactory, EventLoopTaskQueueFactory tailTaskQueueFactory)
-
Uses of SelectStrategy in io.netty.channel.kqueue
Fields in io.netty.channel.kqueue declared as SelectStrategy Modifier and Type Field Description private SelectStrategy
KQueueEventLoop. selectStrategy
Constructors in io.netty.channel.kqueue with parameters of type SelectStrategy Constructor Description KQueueEventLoop(EventLoopGroup parent, java.util.concurrent.Executor executor, int maxEvents, SelectStrategy strategy, RejectedExecutionHandler rejectedExecutionHandler, EventLoopTaskQueueFactory taskQueueFactory, EventLoopTaskQueueFactory tailTaskQueueFactory)
-
Uses of SelectStrategy in io.netty.channel.nio
Fields in io.netty.channel.nio declared as SelectStrategy Modifier and Type Field Description private SelectStrategy
NioEventLoop. selectStrategy
Constructors in io.netty.channel.nio with parameters of type SelectStrategy Constructor Description NioEventLoop(NioEventLoopGroup parent, java.util.concurrent.Executor executor, java.nio.channels.spi.SelectorProvider selectorProvider, SelectStrategy strategy, RejectedExecutionHandler rejectedExecutionHandler, EventLoopTaskQueueFactory taskQueueFactory, EventLoopTaskQueueFactory tailTaskQueueFactory)
-