Example usage for Java io.netty.channel EventLoopGroup fields, constructors, methods, implement or subclass
The text is from its open source code.
boolean | isShuttingDown() Returns true if and only if all EventExecutor s managed by this EventExecutorGroup are being #shutdownGracefully() shut down gracefully or was #isShutdown() shut down . |
Iterator | iterator() |
EventLoop | next() Return the next EventLoop to use |
ChannelFuture | register(Channel channel) Register a Channel with this EventLoop . |
ChannelFuture | register(ChannelPromise promise) Register a Channel with this EventLoop using a ChannelFuture . |
ScheduledFuture> | schedule(Runnable command, long delay, TimeUnit unit) |
ScheduledFuture> | scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit) |
void | shutdown() |
Future> | shutdownGracefully() Shortcut method for #shutdownGracefully(long,long,TimeUnit) with sensible default values. |
Future> | shutdownGracefully(long quietPeriod, long timeout, TimeUnit unit) Signals this executor that the caller wants the executor to be shut down. |
Future> | submit(Runnable task) |
Future> | terminationFuture() Returns the Future which is notified when all EventExecutor s managed by this EventExecutorGroup have been terminated. |