public class DefaultEventLoopGroup extends MultithreadEventLoopGroup
MultithreadEventLoopGroup which must be used for the local transport.| Constructor and Description |
|---|
DefaultEventLoopGroup()
|
DefaultEventLoopGroup(int nEventLoops) |
DefaultEventLoopGroup(int nEventLoops,
Executor executor) |
DefaultEventLoopGroup(int nEventLoops,
ExecutorServiceFactory executorServiceFactory) |
| Modifier and Type | Method and Description |
|---|---|
protected EventLoop |
newChild(Executor executor,
Object... args)
Create a new EventExecutor which will later then accessible via the
MultithreadEventExecutorGroup.next() method. |
next, register, registerawaitTermination, children, executorCount, isShutdown, isShuttingDown, isTerminated, newDefaultExecutorService, shutdown, shutdownGracefully, terminationFutureclose, execute, invokeAll, invokeAll, invokeAny, invokeAny, schedule, schedule, scheduleAtFixedRate, scheduleWithFixedDelay, shutdownGracefully, shutdownNow, submit, submit, submitclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitchildren, isShuttingDown, schedule, schedule, scheduleAtFixedRate, scheduleWithFixedDelay, shutdown, shutdownGracefully, shutdownGracefully, shutdownNow, submit, submit, submit, terminationFutureawaitTermination, invokeAll, invokeAll, invokeAny, invokeAny, isShutdown, isTerminatedclosepublic DefaultEventLoopGroup()
EventLoops as there processors/cores
available, as well as the default Executor.DefaultExecutorServiceFactorypublic DefaultEventLoopGroup(int nEventLoops)
nEventLoops - the number of EventLoops that will be used by this instance.
If executor is null this number will also be the parallelism
requested from the default executor. It is generally advised for the number
of EventLoops and the number of Threads used by the
executor to lie very close together.public DefaultEventLoopGroup(int nEventLoops,
Executor executor)
nEventLoops - the number of EventLoops that will be used by this instance.
If executor is null this number will also be the parallelism
requested from the default executor. It is generally advised for the number
of EventLoops and the number of Threads used by the
executor to lie very close together.executor - the Executor to use, or null if the default should be used.public DefaultEventLoopGroup(int nEventLoops,
ExecutorServiceFactory executorServiceFactory)
nEventLoops - the number of EventLoops that will be used by this instance.
If executor is null this number will also be the parallelism
requested from the default executor. It is generally advised for the number
of EventLoops and the number of Threads used by the
executor to lie very close together.executorServiceFactory - the ExecutorServiceFactory to use, or null if the default
should be used.protected EventLoop newChild(Executor executor, Object... args) throws Exception
MultithreadEventExecutorGroupMultithreadEventExecutorGroup.next() method. This method will be
called for each thread that will serve this MultithreadEventExecutorGroup.newChild in class MultithreadEventLoopGroupExceptionCopyright © 2008–2015 The Netty Project. All rights reserved.