public interface ProgressiveFuture<V> extends Future<V>
Future which is used to indicate the progress of an operation.| Modifier and Type | Method and Description | 
|---|---|
ProgressiveFuture<V> | 
addListener(GenericFutureListener<? extends Future<? super V>> listener)
Adds the specified listener to this future. 
 | 
ProgressiveFuture<V> | 
addListeners(GenericFutureListener<? extends Future<? super V>>... listeners)
Adds the specified listeners to this future. 
 | 
ProgressiveFuture<V> | 
await()
Waits for this future to be completed. 
 | 
ProgressiveFuture<V> | 
awaitUninterruptibly()
Waits for this future to be completed without
 interruption. 
 | 
ProgressiveFuture<V> | 
removeListener(GenericFutureListener<? extends Future<? super V>> listener)
Removes the first occurrence of the specified listener from this future. 
 | 
ProgressiveFuture<V> | 
removeListeners(GenericFutureListener<? extends Future<? super V>>... listeners)
Removes the first occurrence for each of the listeners from this future. 
 | 
ProgressiveFuture<V> | 
sync()
Waits for this future until it is done, and rethrows the cause of the failure if this future
 failed. 
 | 
ProgressiveFuture<V> | 
syncUninterruptibly()
Waits for this future until it is done, and rethrows the cause of the failure if this future
 failed. 
 | 
await, await, awaitUninterruptibly, awaitUninterruptibly, cancel, cause, getNow, isCancellable, isSuccessget, get, isCancelled, isDoneProgressiveFuture<V> addListener(GenericFutureListener<? extends Future<? super V>> listener)
FutureProgressiveFuture<V> addListeners(GenericFutureListener<? extends Future<? super V>>... listeners)
FutureProgressiveFuture<V> removeListener(GenericFutureListener<? extends Future<? super V>> listener)
FutureProgressiveFuture<V> removeListeners(GenericFutureListener<? extends Future<? super V>>... listeners)
FutureProgressiveFuture<V> sync() throws InterruptedException
FutureInterruptedExceptionProgressiveFuture<V> syncUninterruptibly()
FutureProgressiveFuture<V> await() throws InterruptedException
FutureInterruptedException - if the current thread was interruptedProgressiveFuture<V> awaitUninterruptibly()
FutureInterruptedException and
 discards it silently.Copyright © 2008–2025 The Netty Project. All rights reserved.