Uses of Interface
io.netty.util.concurrent.EventExecutorChooserFactory
Packages that use EventExecutorChooserFactory
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).
Utility classes for concurrent / async tasks.
-
Uses of EventExecutorChooserFactory in io.netty.channel
Constructors in io.netty.channel with parameters of type EventExecutorChooserFactoryModifierConstructorDescriptionprotected
MultithreadEventLoopGroup
(int nThreads, Executor executor, EventExecutorChooserFactory chooserFactory, Object... args) -
Uses of EventExecutorChooserFactory in io.netty.channel.epoll
Constructors in io.netty.channel.epoll with parameters of type EventExecutorChooserFactoryModifierConstructorDescriptionEpollEventLoopGroup
(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) -
Uses of EventExecutorChooserFactory in io.netty.channel.kqueue
Constructors in io.netty.channel.kqueue with parameters of type EventExecutorChooserFactoryModifierConstructorDescriptionKQueueEventLoopGroup
(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) -
Uses of EventExecutorChooserFactory in io.netty.channel.nio
Constructors in io.netty.channel.nio with parameters of type EventExecutorChooserFactoryModifierConstructorDescriptionNioEventLoopGroup
(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) -
Uses of EventExecutorChooserFactory in io.netty.util.concurrent
Classes in io.netty.util.concurrent that implement EventExecutorChooserFactoryModifier and TypeClassDescriptionfinal class
Default implementation which uses simple round-robin to choose nextEventExecutor
.Constructors in io.netty.util.concurrent with parameters of type EventExecutorChooserFactoryModifierConstructorDescriptionprotected
MultithreadEventExecutorGroup
(int nThreads, Executor executor, EventExecutorChooserFactory chooserFactory, Object... args) Create a new instance.