Package io.netty.channel
Class AbstractEventLoopGroup
- java.lang.Object
-
- io.netty.util.concurrent.AbstractEventExecutorGroup
-
- io.netty.channel.AbstractEventLoopGroup
-
- All Implemented Interfaces:
EventLoopGroup
,EventExecutorGroup
,java.lang.Iterable<EventExecutor>
,java.util.concurrent.Executor
,java.util.concurrent.ExecutorService
,java.util.concurrent.ScheduledExecutorService
public abstract class AbstractEventLoopGroup extends AbstractEventExecutorGroup implements EventLoopGroup
Skeletal implementation ofEventLoopGroup
.
-
-
Constructor Summary
Constructors Constructor Description AbstractEventLoopGroup()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract EventLoop
next()
Return the nextEventLoop
to use-
Methods inherited from class io.netty.util.concurrent.AbstractEventExecutorGroup
execute, invokeAll, invokeAll, invokeAny, invokeAny, schedule, schedule, scheduleAtFixedRate, scheduleWithFixedDelay, shutdown, shutdownGracefully, shutdownNow, submit, submit, submit
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.netty.util.concurrent.EventExecutorGroup
isShuttingDown, iterator, schedule, schedule, scheduleAtFixedRate, scheduleWithFixedDelay, shutdown, shutdownGracefully, shutdownGracefully, shutdownNow, submit, submit, submit, terminationFuture
-
Methods inherited from interface io.netty.channel.EventLoopGroup
register, register, register
-
-
-
-
Method Detail
-
next
public abstract EventLoop next()
Description copied from interface:EventLoopGroup
Return the nextEventLoop
to use- Specified by:
next
in interfaceEventExecutorGroup
- Specified by:
next
in interfaceEventLoopGroup
-
-