Java io.netty.channel EventLoopGroup fields, constructors, methods, implement or subclass

Example usage for Java io.netty.channel EventLoopGroup fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for io.netty.channel EventLoopGroup.

The text is from its open source code.

Implementation

io.netty.channel.EventLoopGroup has the following implementations.
Click this link to see all its implementation.

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()
EventLoopnext()
Return the next EventLoop to use
ChannelFutureregister(Channel channel)
Register a Channel with this EventLoop .
ChannelFutureregister(ChannelPromise promise)
Register a Channel with this EventLoop using a ChannelFuture .
ScheduledFutureschedule(Runnable command, long delay, TimeUnit unit)
ScheduledFuturescheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit)
voidshutdown()
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)
FutureterminationFuture()
Returns the Future which is notified when all EventExecutor s managed by this EventExecutorGroup have been terminated.