Uses of Interface
io.netty.util.concurrent.EventExecutorChooserFactory
-
Packages that use EventExecutorChooserFactory 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.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 EventExecutorChooserFactory in io.netty.channel
Constructors in io.netty.channel with parameters of type EventExecutorChooserFactory Constructor Description MultithreadEventLoopGroup(int nThreads, java.util.concurrent.Executor executor, EventExecutorChooserFactory chooserFactory, java.lang.Object... args)
-
Uses of EventExecutorChooserFactory in io.netty.channel.nio
Constructors in io.netty.channel.nio with parameters of type EventExecutorChooserFactory Constructor Description NioEventLoopGroup(int nThreads, java.util.concurrent.Executor executor, EventExecutorChooserFactory chooserFactory, java.nio.channels.spi.SelectorProvider selectorProvider, SelectStrategyFactory selectStrategyFactory)
NioEventLoopGroup(int nThreads, java.util.concurrent.Executor executor, EventExecutorChooserFactory chooserFactory, java.nio.channels.spi.SelectorProvider selectorProvider, SelectStrategyFactory selectStrategyFactory, RejectedExecutionHandler rejectedExecutionHandler)
NioEventLoopGroup(int nThreads, java.util.concurrent.Executor executor, EventExecutorChooserFactory chooserFactory, java.nio.channels.spi.SelectorProvider selectorProvider, SelectStrategyFactory selectStrategyFactory, RejectedExecutionHandler rejectedExecutionHandler, EventLoopTaskQueueFactory taskQueueFactory)
-
Uses of EventExecutorChooserFactory in io.netty.util.concurrent
Classes in io.netty.util.concurrent that implement EventExecutorChooserFactory Modifier and Type Class Description class
DefaultEventExecutorChooserFactory
Default implementation which uses simple round-robin to choose nextEventExecutor
.Constructors in io.netty.util.concurrent with parameters of type EventExecutorChooserFactory Constructor Description MultithreadEventExecutorGroup(int nThreads, java.util.concurrent.Executor executor, EventExecutorChooserFactory chooserFactory, java.lang.Object... args)
Create a new instance.
-