Uses of Interface
io.netty.util.concurrent.EventExecutorGroup
-
Packages that use EventExecutorGroup Package Description io.netty.util.concurrent Utility classes for concurrent / async tasks. -
-
Uses of EventExecutorGroup in io.netty.util.concurrent
Subinterfaces of EventExecutorGroup in io.netty.util.concurrent Modifier and Type Interface Description interface
EventExecutor
TheEventExecutor
is a specialEventExecutorGroup
which comes with some handy methods to see if aThread
is executed in a event loop.interface
OrderedEventExecutor
Marker interface forEventExecutor
s that will process all submitted tasks in an ordered / serial fashion.Classes in io.netty.util.concurrent that implement EventExecutorGroup Modifier and Type Class Description class
AbstractEventExecutor
Abstract base class forEventExecutor
implementations.class
AbstractEventExecutorGroup
Abstract base class forEventExecutorGroup
implementations.class
AbstractScheduledEventExecutor
Abstract base class forEventExecutor
s that want to support scheduling.class
DefaultEventExecutor
DefaultSingleThreadEventExecutor
implementation which just execute all submitted task in a serial fashion.class
DefaultEventExecutorGroup
Default implementation ofMultithreadEventExecutorGroup
which will useDefaultEventExecutor
instances to handle the tasks.class
GlobalEventExecutor
Single-thread singletonEventExecutor
.class
ImmediateEventExecutor
ExecutesRunnable
objects in the caller's thread.class
MultithreadEventExecutorGroup
Abstract base class forEventExecutorGroup
implementations that handles their tasks with multiple threads at the same time.class
NonStickyEventExecutorGroup
EventExecutorGroup
which will preserveRunnable
execution order but makes no guarantees about whatEventExecutor
(and thereforeThread
) will be used to execute theRunnable
s.class
SingleThreadEventExecutor
Abstract base class forOrderedEventExecutor
's that execute all its submitted tasks in a single thread.class
UnorderedThreadPoolEventExecutor
EventExecutor
implementation which makes no guarantees about the ordering of task execution that are submitted because there may be multiple threads executing these tasks.Methods in io.netty.util.concurrent that return EventExecutorGroup Modifier and Type Method Description EventExecutorGroup
AbstractEventExecutor. parent()
EventExecutorGroup
EventExecutor. parent()
Return theEventExecutorGroup
which is the parent of thisEventExecutor
,EventExecutorGroup
UnorderedThreadPoolEventExecutor. parent()
-