Java io.netty.util.concurrent EventExecutorGroup fields, constructors, methods, implement or subclass

Example usage for Java io.netty.util.concurrent EventExecutorGroup fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for io.netty.util.concurrent EventExecutorGroup.

The text is from its open source code.

Method

booleanisShuttingDown()
Returns true if and only if all EventExecutor s managed by this EventExecutorGroup are being #shutdownGracefully() shut down gracefully or was #isShutdown() shut down .
Iteratoriterator()
EventExecutornext()
Returns one of the EventExecutor s managed by this EventExecutorGroup .
FutureshutdownGracefully()
Shortcut method for #shutdownGracefully(long,long,TimeUnit) with sensible default values.
FutureshutdownGracefully(long quietPeriod, long timeout, TimeUnit unit)
Signals this executor that the caller wants the executor to be shut down.
Futuresubmit(Runnable task)
Futuresubmit(Callable task)
FutureterminationFuture()
Returns the Future which is notified when all EventExecutor s managed by this EventExecutorGroup have been terminated.