| 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.
|
| Class and Description |
|---|
| Future
The result of an asynchronous operation.
|
| Promise
Special
Future which is writable. |
| Class and Description |
|---|
| AbstractEventExecutor
Abstract base class for
EventExecutor implementations. |
| AbstractEventExecutorGroup
Abstract base class for
EventExecutorGroup implementations. |
| AbstractFuture
Abstract
Future implementation which does not allow for cancellation. |
| AbstractScheduledEventExecutor
Abstract base class for
EventExecutors that want to support scheduling. |
| CompleteFuture |
| DefaultEventExecutorChooserFactory
Default implementation which uses simple round-robin to choose next
EventExecutor. |
| DefaultPromise |
| EventExecutor
The
EventExecutor is a special EventExecutorGroup which comes
with some handy methods to see if a Thread is executed in a event loop. |
| EventExecutorChooserFactory
Factory that creates new
EventExecutorChooserFactory.EventExecutorChoosers. |
| EventExecutorChooserFactory.EventExecutorChooser
Chooses the next
EventExecutor to use. |
| EventExecutorGroup
The
EventExecutorGroup is responsible for providing the EventExecutor's to use
via its EventExecutorGroup.next() method. |
| Future
The result of an asynchronous operation.
|
| FutureListener
A subtype of
GenericFutureListener that hides type parameter for convenience. |
| GenericFutureListener
Listens to the result of a
Future. |
| GlobalEventExecutor
Single-thread singleton
EventExecutor. |
| ImmediateEventExecutor
Executes
Runnable objects in the caller's thread. |
ImmediateExecutor
Executor which execute tasks in the callers thread. |
| MultithreadEventExecutorGroup
Abstract base class for
EventExecutorGroup implementations that handles their tasks with multiple threads at
the same time. |
| OrderedEventExecutor
Marker interface for
EventExecutors that will process all submitted tasks in an ordered / serial fashion. |
| ProgressiveFuture
A
Future which is used to indicate the progress of an operation. |
| ProgressivePromise
Special
ProgressiveFuture which is writable. |
| Promise
Special
Future which is writable. |
| PromiseAggregator
Deprecated.
Use
PromiseCombiner
GenericFutureListener implementation which consolidates multiple Futures
into one, by listening to individual Futures and producing an aggregated result
(success/failure) when all Futures have completed. |
| RejectedExecutionHandler
Similar to
RejectedExecutionHandler but specific to SingleThreadEventExecutor. |
| ScheduledFuture
The result of an scheduled asynchronous operation.
|
| SingleThreadEventExecutor
Abstract base class for
OrderedEventExecutor's that execute all its submitted tasks in a single thread. |
| ThreadProperties
Expose details for a
Thread. |
| Class and Description |
|---|
| Promise
Special
Future which is writable. |
Copyright © 2008–2019 The Netty Project. All rights reserved.