public interface ProgressivePromise<V> extends Promise<V>, ProgressiveFuture<V>
ProgressiveFuture
which is writable.Modifier and Type | Method and Description |
---|---|
ProgressivePromise<V> |
addListener(GenericFutureListener<? extends Future<? super V>> listener)
Adds the specified listener to this future.
|
ProgressivePromise<V> |
addListeners(GenericFutureListener<? extends Future<? super V>>... listeners)
Adds the specified listeners to this future.
|
ProgressivePromise<V> |
await()
Waits for this future to be completed.
|
ProgressivePromise<V> |
awaitUninterruptibly()
Waits for this future to be completed without
interruption.
|
ProgressivePromise<V> |
removeListener(GenericFutureListener<? extends Future<? super V>> listener)
Removes the first occurrence of the specified listener from this future.
|
ProgressivePromise<V> |
removeListeners(GenericFutureListener<? extends Future<? super V>>... listeners)
Removes the first occurrence for each of the listeners from this future.
|
ProgressivePromise<V> |
setFailure(java.lang.Throwable cause)
Marks this future as a failure and notifies all
listeners.
|
ProgressivePromise<V> |
setProgress(long progress,
long total)
Sets the current progress of the operation and notifies the listeners that implement
GenericProgressiveFutureListener . |
ProgressivePromise<V> |
setSuccess(V result)
Marks this future as a success and notifies all
listeners.
|
ProgressivePromise<V> |
sync()
Waits for this future until it is done, and rethrows the cause of the failure if this future
failed.
|
ProgressivePromise<V> |
syncUninterruptibly()
Waits for this future until it is done, and rethrows the cause of the failure if this future
failed.
|
boolean |
tryProgress(long progress,
long total)
Tries to set the current progress of the operation and notifies the listeners that implement
GenericProgressiveFutureListener . |
setUncancellable, tryFailure, trySuccess
await, await, awaitUninterruptibly, awaitUninterruptibly, cancel, cause, getNow, isCancellable, isSuccess
ProgressivePromise<V> setProgress(long progress, long total)
GenericProgressiveFutureListener
.boolean tryProgress(long progress, long total)
GenericProgressiveFutureListener
. If the operation is already complete or the progress is out of range,
this method does nothing but returning false
.ProgressivePromise<V> setSuccess(V result)
Promise
IllegalStateException
.setSuccess
in interface Promise<V>
ProgressivePromise<V> setFailure(java.lang.Throwable cause)
Promise
IllegalStateException
.setFailure
in interface Promise<V>
ProgressivePromise<V> addListener(GenericFutureListener<? extends Future<? super V>> listener)
Future
addListener
in interface ProgressiveFuture<V>
addListener
in interface Promise<V>
ProgressivePromise<V> addListeners(GenericFutureListener<? extends Future<? super V>>... listeners)
Future
addListeners
in interface ProgressiveFuture<V>
addListeners
in interface Promise<V>
ProgressivePromise<V> removeListener(GenericFutureListener<? extends Future<? super V>> listener)
Future
removeListener
in interface ProgressiveFuture<V>
removeListener
in interface Promise<V>
ProgressivePromise<V> removeListeners(GenericFutureListener<? extends Future<? super V>>... listeners)
Future
removeListeners
in interface ProgressiveFuture<V>
removeListeners
in interface Promise<V>
ProgressivePromise<V> await() throws java.lang.InterruptedException
Future
ProgressivePromise<V> awaitUninterruptibly()
Future
InterruptedException
and
discards it silently.awaitUninterruptibly
in interface ProgressiveFuture<V>
awaitUninterruptibly
in interface Promise<V>
ProgressivePromise<V> sync() throws java.lang.InterruptedException
Future
ProgressivePromise<V> syncUninterruptibly()
Future
syncUninterruptibly
in interface ProgressiveFuture<V>
syncUninterruptibly
in interface Promise<V>
Copyright © 2008–2018 The Netty Project. All rights reserved.