| Package | Description |
|---|---|
| io.netty.util.concurrent |
Utility classes for concurrent / async tasks.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractEventExecutor
Abstract base class for
EventExecutor implementations. |
class |
AbstractScheduledEventExecutor
Abstract base class for
EventExecutors that want to support scheduling. |
class |
DefaultEventExecutor
Default
SingleThreadEventExecutor implementation which just execute all submitted task in a
serial fashion. |
class |
GlobalEventExecutor
Single-thread singleton
EventExecutor. |
class |
ImmediateEventExecutor
AbstractEventExecutor which execute tasks in the callers thread. |
class |
SingleThreadEventExecutor
Abstract base class for
EventExecutor's that execute all its submitted tasks in a single thread. |
| Modifier and Type | Method and Description |
|---|---|
<E extends EventExecutor> |
MultithreadEventExecutorGroup.children() |
<E extends EventExecutor> |
EventExecutor.children()
Returns an unmodifiable singleton set which contains itself.
|
<E extends EventExecutor> |
EventExecutorGroup.children()
Returns the unmodifiable set of
EventExecutors managed by this EventExecutorGroup. |
<E extends EventExecutor> |
AbstractEventExecutor.children() |
| Modifier and Type | Method and Description |
|---|---|
protected EventExecutor |
CompleteFuture.executor()
Return the
EventExecutor which is used by this CompleteFuture. |
protected EventExecutor |
DefaultPromise.executor() |
protected abstract EventExecutor |
MultithreadEventExecutorGroup.newChild(Executor executor,
Object... args)
Create a new EventExecutor which will later then accessible via the
MultithreadEventExecutorGroup.next() method. |
protected EventExecutor |
DefaultEventExecutorGroup.newChild(Executor executor,
Object... args) |
EventExecutor |
MultithreadEventExecutorGroup.next() |
EventExecutor |
EventExecutor.next()
Returns a reference to itself.
|
EventExecutor |
EventExecutorGroup.next()
Returns one of the
EventExecutors managed by this EventExecutorGroup. |
EventExecutor |
AbstractEventExecutor.next() |
| Modifier and Type | Method and Description |
|---|---|
Iterator<EventExecutor> |
MultithreadEventExecutorGroup.iterator() |
Iterator<EventExecutor> |
EventExecutorGroup.iterator()
Deprecated.
Use
EventExecutorGroup.children() instead. |
Iterator<EventExecutor> |
AbstractEventExecutor.iterator() |
| Modifier and Type | Method and Description |
|---|---|
protected static void |
DefaultPromise.notifyListener(EventExecutor eventExecutor,
Future<?> future,
GenericFutureListener<?> l) |
| Constructor and Description |
|---|
CompleteFuture(EventExecutor executor)
Creates a new instance.
|
DefaultProgressivePromise(EventExecutor executor)
Creates a new instance.
|
DefaultPromise(EventExecutor executor)
Creates a new instance.
|
FailedFuture(EventExecutor executor,
Throwable cause)
Creates a new instance.
|
SucceededFuture(EventExecutor executor,
V result)
Creates a new instance.
|
Copyright © 2008–2016 The Netty Project. All rights reserved.