Uses of Interface
io.netty.channel.SelectStrategyFactory
Packages that use SelectStrategyFactory
Package
Description
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
Optimized transport for linux which uses EPOLL Edge-Triggered Mode
for maximal performance.
BSD specific transport.
NIO-based channel
API implementation - recommended for a large number of connections (>= 1000).
-
Uses of SelectStrategyFactory in io.netty.channel
Classes in io.netty.channel that implement SelectStrategyFactoryModifier and TypeClassDescriptionfinal class
Factory which uses the default select strategy.Fields in io.netty.channel declared as SelectStrategyFactoryModifier and TypeFieldDescriptionstatic final SelectStrategyFactory
DefaultSelectStrategyFactory.INSTANCE
-
Uses of SelectStrategyFactory in io.netty.channel.epoll
Constructors in io.netty.channel.epoll with parameters of type SelectStrategyFactoryModifierConstructorDescriptionEpollEventLoopGroup
(int nThreads, SelectStrategyFactory selectStrategyFactory) Create a new instance using the specified number of threads and the defaultThreadFactory
.EpollEventLoopGroup
(int nThreads, Executor executor, SelectStrategyFactory selectStrategyFactory) EpollEventLoopGroup
(int nThreads, Executor executor, EventExecutorChooserFactory chooserFactory, SelectStrategyFactory selectStrategyFactory) EpollEventLoopGroup
(int nThreads, Executor executor, EventExecutorChooserFactory chooserFactory, SelectStrategyFactory selectStrategyFactory, RejectedExecutionHandler rejectedExecutionHandler) EpollEventLoopGroup
(int nThreads, Executor executor, EventExecutorChooserFactory chooserFactory, SelectStrategyFactory selectStrategyFactory, RejectedExecutionHandler rejectedExecutionHandler, EventLoopTaskQueueFactory queueFactory) EpollEventLoopGroup
(int nThreads, Executor executor, EventExecutorChooserFactory chooserFactory, SelectStrategyFactory selectStrategyFactory, RejectedExecutionHandler rejectedExecutionHandler, EventLoopTaskQueueFactory taskQueueFactory, EventLoopTaskQueueFactory tailTaskQueueFactory) EpollEventLoopGroup
(int nThreads, ThreadFactory threadFactory, int maxEventsAtOnce, SelectStrategyFactory selectStrategyFactory) Deprecated.EpollEventLoopGroup
(int nThreads, ThreadFactory threadFactory, SelectStrategyFactory selectStrategyFactory) Create a new instance using the specified number of threads and the givenThreadFactory
. -
Uses of SelectStrategyFactory in io.netty.channel.kqueue
Constructors in io.netty.channel.kqueue with parameters of type SelectStrategyFactoryModifierConstructorDescriptionKQueueEventLoopGroup
(int nThreads, SelectStrategyFactory selectStrategyFactory) Create a new instance using the specified number of threads and the defaultThreadFactory
.KQueueEventLoopGroup
(int nThreads, Executor executor, SelectStrategyFactory selectStrategyFactory) KQueueEventLoopGroup
(int nThreads, Executor executor, EventExecutorChooserFactory chooserFactory, SelectStrategyFactory selectStrategyFactory) KQueueEventLoopGroup
(int nThreads, Executor executor, EventExecutorChooserFactory chooserFactory, SelectStrategyFactory selectStrategyFactory, RejectedExecutionHandler rejectedExecutionHandler) KQueueEventLoopGroup
(int nThreads, Executor executor, EventExecutorChooserFactory chooserFactory, SelectStrategyFactory selectStrategyFactory, RejectedExecutionHandler rejectedExecutionHandler, EventLoopTaskQueueFactory queueFactory) KQueueEventLoopGroup
(int nThreads, Executor executor, EventExecutorChooserFactory chooserFactory, SelectStrategyFactory selectStrategyFactory, RejectedExecutionHandler rejectedExecutionHandler, EventLoopTaskQueueFactory taskQueueFactory, EventLoopTaskQueueFactory tailTaskQueueFactory) KQueueEventLoopGroup
(int nThreads, ThreadFactory threadFactory, int maxEventsAtOnce, SelectStrategyFactory selectStrategyFactory) KQueueEventLoopGroup
(int nThreads, ThreadFactory threadFactory, SelectStrategyFactory selectStrategyFactory) Create a new instance using the specified number of threads and the givenThreadFactory
. -
Uses of SelectStrategyFactory in io.netty.channel.nio
Constructors in io.netty.channel.nio with parameters of type SelectStrategyFactoryModifierConstructorDescriptionNioEventLoopGroup
(int nThreads, Executor executor, EventExecutorChooserFactory chooserFactory, SelectorProvider selectorProvider, SelectStrategyFactory selectStrategyFactory) NioEventLoopGroup
(int nThreads, Executor executor, EventExecutorChooserFactory chooserFactory, SelectorProvider selectorProvider, SelectStrategyFactory selectStrategyFactory, RejectedExecutionHandler rejectedExecutionHandler) NioEventLoopGroup
(int nThreads, Executor executor, EventExecutorChooserFactory chooserFactory, SelectorProvider selectorProvider, SelectStrategyFactory selectStrategyFactory, RejectedExecutionHandler rejectedExecutionHandler, EventLoopTaskQueueFactory taskQueueFactory) NioEventLoopGroup
(int nThreads, Executor executor, EventExecutorChooserFactory chooserFactory, SelectorProvider selectorProvider, SelectStrategyFactory selectStrategyFactory, RejectedExecutionHandler rejectedExecutionHandler, EventLoopTaskQueueFactory taskQueueFactory, EventLoopTaskQueueFactory tailTaskQueueFactory) NioEventLoopGroup
(int nThreads, Executor executor, SelectorProvider selectorProvider, SelectStrategyFactory selectStrategyFactory) NioEventLoopGroup
(int nThreads, ThreadFactory threadFactory, SelectorProvider selectorProvider, SelectStrategyFactory selectStrategyFactory)
EpollEventLoopGroup(int)
,EpollEventLoopGroup(int, ThreadFactory)
, orEpollEventLoopGroup(int, SelectStrategyFactory)