public abstract class MultithreadEventLoopGroup extends io.netty.util.concurrent.MultithreadEventExecutorGroup implements EventLoopGroup
EventLoopGroup implementations that handle their tasks with multiple threads at
the same time.| Modifier | Constructor and Description |
|---|---|
protected |
MultithreadEventLoopGroup(int nEventLoops,
Executor executor,
Object... args) |
protected |
MultithreadEventLoopGroup(int nEventLoops,
io.netty.util.concurrent.ExecutorServiceFactory executorServiceFactory,
Object... args) |
| Modifier and Type | Method and Description |
|---|---|
protected abstract EventLoop |
newChild(Executor executor,
Object... args) |
EventLoop |
next() |
ChannelFuture |
register(Channel channel)
|
ChannelFuture |
register(Channel channel,
ChannelPromise promise)
|
awaitTermination, 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, isTerminatedcloseprotected MultithreadEventLoopGroup(int nEventLoops,
Executor executor,
Object... args)
MultithreadEventExecutorGroup#MultithreadEventExecutorGroup(int, Executor, Object...)}protected MultithreadEventLoopGroup(int nEventLoops,
io.netty.util.concurrent.ExecutorServiceFactory executorServiceFactory,
Object... args)
MultithreadEventExecutorGroup#MultithreadEventExecutorGroup(int, ExecutorServiceFactory, Object...)}public EventLoop next()
next in interface EventLoopGroupnext in interface io.netty.util.concurrent.EventExecutorGroupnext in class io.netty.util.concurrent.MultithreadEventExecutorGroupprotected abstract EventLoop newChild(Executor executor, Object... args) throws Exception
newChild in class io.netty.util.concurrent.MultithreadEventExecutorGroupExceptionpublic ChannelFuture register(Channel channel)
EventLoopGroupChannel with an EventLoop from this EventLoopGroup. The returned
ChannelFuture will get notified once the registration is completed.
It's only safe to submit a new task to the EventLoop from within a
ChannelHandler once the ChannelPromise succeeded. Otherwise
the task may or may not be rejected.
register in interface EventLoopGrouppublic ChannelFuture register(Channel channel, ChannelPromise promise)
EventLoopGroupChannel with an EventLoop from this EventLoopGroup. The provided
ChannelPromise will get notified once the registration is completed. The returned ChannelFuture
is the same ChannelPromise that was passed to the method.
It's only safe to submit a new task to the EventLoop from within a
ChannelHandler once the ChannelPromise succeeded. Otherwise
the task may or may not be rejected.
register in interface EventLoopGroupCopyright © 2008–2015 The Netty Project. All rights reserved.