Uses of Package
io.netty.util.concurrent
-
Packages that use io.netty.util.concurrent Package Description io.netty.util Utility classes used across multiple packages.io.netty.util.concurrent Utility classes for concurrent / async tasks.io.netty.util.internal Internal-use-only utilities which is not allowed to be used outside Netty. -
Classes in io.netty.util.concurrent used by io.netty.util Class Description Future The result of an asynchronous operation.Promise SpecialFuture
which is writable. -
Classes in io.netty.util.concurrent used by io.netty.util.concurrent Class Description AbstractEventExecutor Abstract base class forEventExecutor
implementations.AbstractEventExecutor.LazyRunnable Deprecated.overrideSingleThreadEventExecutor.wakesUpForTask(java.lang.Runnable)
to re-create this behaviourAbstractEventExecutorGroup Abstract base class forEventExecutorGroup
implementations.AbstractFuture AbstractFuture
implementation which does not allow for cancellation.AbstractScheduledEventExecutor Abstract base class forEventExecutor
s that want to support scheduling.CompleteFuture DefaultEventExecutorChooserFactory Default implementation which uses simple round-robin to choose nextEventExecutor
.DefaultPromise EventExecutor TheEventExecutor
is a specialEventExecutorGroup
which comes with some handy methods to see if aThread
is executed in a event loop.EventExecutorChooserFactory Factory that creates newEventExecutorChooserFactory.EventExecutorChooser
s.EventExecutorChooserFactory.EventExecutorChooser Chooses the nextEventExecutor
to use.EventExecutorGroup TheEventExecutorGroup
is responsible for providing theEventExecutor
's to use via itsEventExecutorGroup.next()
method.Future The result of an asynchronous operation.FutureListener A subtype ofGenericFutureListener
that hides type parameter for convenience.GenericFutureListener Listens to the result of aFuture
.GlobalEventExecutor Single-thread singletonEventExecutor
.ImmediateEventExecutor ExecutesRunnable
objects in the caller's thread.ImmediateExecutor Executor
which execute tasks in the callers thread.MultithreadEventExecutorGroup Abstract base class forEventExecutorGroup
implementations that handles their tasks with multiple threads at the same time.OrderedEventExecutor Marker interface forEventExecutor
s that will process all submitted tasks in an ordered / serial fashion.ProgressiveFuture AFuture
which is used to indicate the progress of an operation.ProgressivePromise SpecialProgressiveFuture
which is writable.Promise SpecialFuture
which is writable.PromiseAggregator Deprecated.RejectedExecutionHandler Similar toRejectedExecutionHandler
but specific toSingleThreadEventExecutor
.ScheduledFuture The result of a scheduled asynchronous operation.SingleThreadEventExecutor Abstract base class forOrderedEventExecutor
's that execute all its submitted tasks in a single thread.ThreadProperties Expose details for aThread
. -
Classes in io.netty.util.concurrent used by io.netty.util.internal Class Description EventExecutor TheEventExecutor
is a specialEventExecutorGroup
which comes with some handy methods to see if aThread
is executed in a event loop.Promise SpecialFuture
which is writable.