Uses of Interface
io.netty.util.concurrent.ProgressiveFuture
-
Packages that use ProgressiveFuture 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. -
-
Uses of ProgressiveFuture in io.netty.channel
Subinterfaces of ProgressiveFuture in io.netty.channel Modifier and Type Interface Description interface
ChannelProgressiveFuture
An specialChannelFuture
which is used to indicate theFileRegion
transfer progressinterface
ChannelProgressivePromise
SpecialChannelPromise
which will be notified once the associated bytes is transferring.Classes in io.netty.channel that implement ProgressiveFuture Modifier and Type Class Description class
DefaultChannelProgressivePromise
The defaultChannelProgressivePromise
implementation. -
Uses of ProgressiveFuture in io.netty.util.concurrent
Classes in io.netty.util.concurrent with type parameters of type ProgressiveFuture Modifier and Type Interface Description interface
GenericProgressiveFutureListener<F extends ProgressiveFuture<?>>
Subinterfaces of ProgressiveFuture in io.netty.util.concurrent Modifier and Type Interface Description interface
ProgressivePromise<V>
SpecialProgressiveFuture
which is writable.Classes in io.netty.util.concurrent that implement ProgressiveFuture Modifier and Type Class Description class
DefaultProgressivePromise<V>
Methods in io.netty.util.concurrent that return ProgressiveFuture Modifier and Type Method 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()
-