Package | Description |
---|---|
io.netty.channel |
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
|
io.netty.util.concurrent |
Utility classes for concurrent / async tasks.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ChannelProgressiveFuture
An special
ChannelFuture which is used to indicate the FileRegion transfer progress |
interface |
ChannelProgressivePromise
Special
ChannelPromise which will be notified once the associated bytes is transferring. |
Modifier and Type | Class and Description |
---|---|
class |
DefaultChannelProgressivePromise
The default
ChannelProgressivePromise implementation. |
Modifier and Type | Interface and Description |
---|---|
interface |
GenericProgressiveFutureListener<F extends ProgressiveFuture<?>> |
Modifier and Type | Interface and Description |
---|---|
interface |
ProgressivePromise<V>
Special
ProgressiveFuture which is writable. |
Modifier and Type | Class and Description |
---|---|
class |
DefaultProgressivePromise<V> |
Modifier and Type | Method and Description |
---|---|
ProgressiveFuture<V> |
ProgressiveFuture.addListener(GenericFutureListener<? extends Future<? super V>> listener) |
ProgressiveFuture<V> |
ProgressiveFuture.addListeners(GenericFutureListener<? extends Future<? super V>>... listeners) |
ProgressiveFuture<V> |
ProgressiveFuture.await() |
ProgressiveFuture<V> |
ProgressiveFuture.awaitUninterruptibly() |
ProgressiveFuture<V> |
ProgressiveFuture.removeListener(GenericFutureListener<? extends Future<? super V>> listener) |
ProgressiveFuture<V> |
ProgressiveFuture.removeListeners(GenericFutureListener<? extends Future<? super V>>... listeners) |
ProgressiveFuture<V> |
ProgressiveFuture.sync() |
ProgressiveFuture<V> |
ProgressiveFuture.syncUninterruptibly() |
Copyright © 2008–2018 The Netty Project. All rights reserved.