public interface EventLoopGroup extends EventExecutorGroup
EventExecutorGroup which allows to register Channel's that get
processed for later selection during the event loop.| Modifier and Type | Method and Description |
|---|---|
EventLoop |
next()
Return the next
EventLoop to use |
ChannelFuture |
register(Channel channel)
|
ChannelFuture |
register(Channel channel,
ChannelFuture future)
|
awaitTermination, isShutdown, isTerminated, shutdownEventLoop next()
EventLoop to usenext in interface EventExecutorGroupChannelFuture register(Channel channel)
Channel with this EventLoop. The returned ChannelFuture
will get notified once the registration was complete.ChannelFuture register(Channel channel, ChannelFuture future)
Channel with this EventLoop. The passed ChannelFuture
will get notified once the registration was complete and also will get returned.Copyright © 2008-2012 The Netty Project. All Rights Reserved.