Interface Promise<V,E extends Exception> 
- Type Parameters:
- V- The type of the task's result, or- Voidif the task does not return anything (i.e. it only has side-effects).
- E- The type of the exception thrown by the task if it fails, or- NeverThrowsExceptionif the task cannot fail.
- All Known Implementing Classes:
- PromiseImpl
Promise represents the result of an asynchronous task.- See Also:
- 
Method SummaryModifier and TypeMethodDescriptionbooleancancel(boolean mayInterruptIfRunning) Attempts to cancel the asynchronous task associated with thisPromise.get()Waits if necessary for thisPromiseto complete, and then returns the result if it completed successfully, or throws anExecutionExceptioncontaining the cause of the failure.Waits if necessary for at most the given time for thisPromiseto complete, and then returns the result if it completed successfully, or throws anExecutionExceptioncontaining the cause of the failure.Waits if necessary for thisPromiseto complete, and then returns the result if it completed successfully, or throws an exception representing the cause of the failure.getOrThrow(long timeout, TimeUnit unit) Waits if necessary for at most the given time for thisPromiseto complete, and then returns the result if it completed successfully, or throws an exception representing the cause of the failure.default VWaits if necessary for thisPromiseto complete, and then returns the result if it completed successfully, or throws an exception representing the cause of the failure.Deprecated.Since 25.0.0.getOrThrowUninterruptibly(long timeout, TimeUnit unit) Deprecated.Since 25.0.0.booleanReturnstrueif thisPromisewas cancelled before it completed normally.booleanisDone()Returnstrueif thisPromisehas completed.booleanisResult()Returnstrueif thisPromisehas completed and contains a value.Submits the provided function for execution once thisPromisehas completed with a result, and returns a newPromiserepresenting the outcome of the function.Submits the provided functions for execution once thisPromisehas completed (with a result or an exception), and returns a newPromiserepresenting the outcome of the invoked function.then(Function<? super V, VOUT, EOUT> onResult, Function<? super E, VOUT, EOUT> onException, Function<? super RuntimeException, VOUT, EOUT> onRuntimeException) Submits the provided functions for execution once thisPromisehas completed (with a result or an exception or aRuntimeException), and returns a newPromiserepresenting the outcome of the invoked function.thenAlways(Runnable onResultOrException) Submits the provided runnable for execution once thisPromisehas completed, and regardless of whether it has a result or an exception.thenAsync(AsyncFunction<? super V, VOUT, E> onResult) Submits the provided asynchronous function for execution once thisPromisehas completed with a result, and returns a newPromiserepresenting the outcome of the function.thenAsync(AsyncFunction<? super V, VOUT, EOUT> onResult, AsyncFunction<? super E, VOUT, EOUT> onException) Submits the provided asynchronous functions for execution once thisPromisehas completed, and returns a newPromiserepresenting the outcome of the invoked function.thenAsync(AsyncFunction<? super V, VOUT, EOUT> onResult, AsyncFunction<? super E, VOUT, EOUT> onException, AsyncFunction<? super RuntimeException, VOUT, EOUT> onRuntimeException) Submits the provided asynchronous functions for execution once thisPromisehas completed, and returns a newPromiserepresenting the outcome of the invoked function.Submits the provided function for execution once thisPromisehas not completed with a result (has completed with an exception), and returns a newPromiserepresenting the outcome of the function.thenCatchAsync(AsyncFunction<? super E, V, EOUT> onException) Submits the provided asynchronous function for execution once thisPromisehas completed with an exception, and returns a newPromiserepresenting the outcome of the function.thenCatchRuntimeException(Function<? super RuntimeException, V, E> onRuntimeException) Submits the provided function for execution once thisPromisehas not completed with a result nor with an exception but with aRuntimeException, and returns a newPromiserepresenting the outcome of the function.thenCatchRuntimeExceptionAsync(AsyncFunction<? super RuntimeException, V, E> onRuntimeException) Submits the provided asynchronous function for execution once thisPromisehas completed with aRuntimeException, and returns a newPromiserepresenting the outcome of the function.Discards the promise result if thisPromisehas completed with a result.thenFinally(Runnable onResultOrException) Submits the provided runnable for execution once thisPromisehas completed, and regardless of whether of its outcome.<T extends ResultHandler<? super V> & ExceptionHandler<? super E> & RuntimeExceptionHandler>
 Promise<V,E> thenOnCompletion(T handler) Registers the provided completion handler for notification for all completion cases of thisPromise.thenOnException(ExceptionHandler<? super E> onException) Registers the provided completion handler for notification if thisPromisecannot be completed due to an exception.thenOnResult(ResultHandler<? super V> onResult) Registers the provided completion handler for notification once thisPromisehas completed with a result.thenOnResultOrException(Runnable onResultOrException) Submits the provided runnable for execution once thisPromisehas completed, and regardless of whether it has a result or an exception.thenOnResultOrException(ResultHandler<? super V> onResult, ExceptionHandler<? super E> onException) Registers the provided completion handlers for notification once thisPromisehas completed (with a result or an exception).thenOnRuntimeException(RuntimeExceptionHandler onRuntimeException) Registers the provided completion handler for notification if thisPromisecannot be completed due to an runtime exception.
- 
Method Details- 
cancelboolean cancel(boolean mayInterruptIfRunning) Attempts to cancel the asynchronous task associated with thisPromise. Cancellation will fail if thisPromisehas already completed or has already been cancelled. If successful, then cancellation will complete thisPromisewith an appropriate exception and notify any registered functions and completion handlers.After this method returns, subsequent calls to isDone()will always returntrue. Subsequent calls toisCancelled()will always returntrueif this method returnedtrue.- Parameters:
- mayInterruptIfRunning-- trueif the thread executing executing the response handler should be interrupted; otherwise, in-progress response handlers are allowed to complete.
- Returns:
- falseif- Promisecould not be cancelled, typically because it has already completed normally;- trueotherwise.
 
- 
getWaits if necessary for thisPromiseto complete, and then returns the result if it completed successfully, or throws anExecutionExceptioncontaining the cause of the failure.- Returns:
- The result, but only if this Promisecompleted successfully.
- Throws:
- ExecutionException- If this- Promisewas cancelled or did not complete successfully. The- ExecutionExceptionwill contain the cause of the failure.
- InterruptedException- If the current thread was interrupted while waiting.
 
- 
getV get(long timeout, TimeUnit unit) throws ExecutionException, TimeoutException, InterruptedException Waits if necessary for at most the given time for thisPromiseto complete, and then returns the result if it completed successfully, or throws anExecutionExceptioncontaining the cause of the failure.- Parameters:
- timeout- The maximum time to wait.
- unit- The time unit of the timeout argument.
- Returns:
- The result, but only if this Promisecompleted successfully.
- Throws:
- ExecutionException- If this- Promisewas cancelled or did not complete successfully. The- ExecutionExceptionwill contain the cause of the failure.
- TimeoutException- If the wait timed out.
- InterruptedException- If the current thread was interrupted while waiting.
 
- 
getOrThrowWaits if necessary for thisPromiseto complete, and then returns the result if it completed successfully, or throws an exception representing the cause of the failure.- Returns:
- The result, but only if this Promisecompleted successfully.
- Throws:
- E- If this- Promisewas cancelled or did not complete successfully.
- InterruptedException- If the current thread was interrupted while waiting.
 
- 
getOrThrowIfInterruptedWaits if necessary for thisPromiseto complete, and then returns the result if it completed successfully, or throws an exception representing the cause of the failure. If the thread is interrupted while waiting for the result then the thread's interrupted status is reset and aRuntimeExceptionis thrown.- Returns:
- The result, but only if this Promisecompleted successfully.
- Throws:
- E- If this- Promisewas cancelled or did not complete successfully.
- RuntimeException- If the caller's thread is interrupted while waiting for the promise to resolve.
 
- 
getOrThrowWaits if necessary for at most the given time for thisPromiseto complete, and then returns the result if it completed successfully, or throws an exception representing the cause of the failure.- Parameters:
- timeout- The maximum time to wait.
- unit- The time unit of the timeout argument.
- Returns:
- The result, but only if this Promisecompleted successfully.
- Throws:
- E- If this- Promisewas cancelled or did not complete successfully.
- TimeoutException- If the wait timed out.
- InterruptedException- If the current thread was interrupted while waiting.
 
- 
getOrThrowUninterruptiblyDeprecated.Since 25.0.0. Prefer usinggetOrThrow()and handle properly theInterruptedExceptionin the calling code, or usegetOrThrowIfInterrupted().Waits if necessary for thisPromiseto complete, and then returns the result if it completed successfully, or throws an exception representing the cause of the failure.This method is similar to getOrThrow()except that it will ignore thread interrupts. When this method returns the status of the current thread will be interrupted if an interrupt was received while waiting.- Returns:
- The result, but only if this Promisecompleted successfully.
- Throws:
- E- If this- Promisewas cancelled or did not complete successfully.
 
- 
getOrThrowUninterruptiblyDeprecated.Since 25.0.0. Prefer usingget(long, TimeUnit)and handle properly theInterruptedExceptionin the calling code, or usegetOrThrowIfInterrupted().Waits if necessary for at most the given time for thisPromiseto complete, and then returns the result if it completed successfully, or throws an exception representing the cause of the failure.This method is similar to getOrThrow(long, TimeUnit)except that it will ignore thread interrupts. When this method returns the status of the current thread will be interrupted if an interrupt was received while waiting.- Parameters:
- timeout- The maximum time to wait.
- unit- The time unit of the timeout argument.
- Returns:
- The result, but only if this Promisecompleted successfully.
- Throws:
- E- If this- Promisewas cancelled or did not complete successfully.
- TimeoutException- If the wait timed out.
 
- 
isCancelledboolean isCancelled()Returnstrueif thisPromisewas cancelled before it completed normally.- Returns:
- trueif this- Promisewas cancelled before it completed normally, otherwise- false.
 
- 
isDoneboolean isDone()Returnstrueif thisPromisehas completed.Completion may be due to normal termination, an exception, or cancellation. In all of these cases, this method will return true.- Returns:
- trueif this- Promisehas completed, otherwise- false.
 
- 
isResultboolean isResult()Returnstrueif thisPromisehas completed and contains a value.- Returns:
- trueif this- Promisehas completed with a value.
 
- 
thenOnExceptionRegisters the provided completion handler for notification if thisPromisecannot be completed due to an exception. If thisPromisecompletes with a result then the completion handler will not be notified.This method can be used for asynchronous completion notification. - Parameters:
- onException- The completion handler which will be notified upon failure completion of this- Promise.
- Returns:
- A Promisethat is guaranteed to be completed once the provided callback has been executed.
 
- 
thenOnResultRegisters the provided completion handler for notification once thisPromisehas completed with a result. If thisPromisecompletes with an exception then the completion handler will not be notified.This method can be used for asynchronous completion notification and is equivalent to then(Function).- Parameters:
- onResult- The completion handler which will be notified upon successful completion of this- Promise.
- Returns:
- A Promisethat is guaranteed to be completed once the provided callback has been executed.
 
- 
thenOnResultOrExceptionPromise<V,E> thenOnResultOrException(ResultHandler<? super V> onResult, ExceptionHandler<? super E> onException) Registers the provided completion handlers for notification once thisPromisehas completed (with a result or an exception). If thisPromisecompletes with a result thenonResultwill be notified with the result, otherwiseonExceptionwill be notified with the exception that occurred.This method can be used for asynchronous completion notification. - Parameters:
- onResult- The completion handler which will be notified upon completion with a result of this- Promise.
- onException- The completion handler which will be notified upon failure of this- Promise.
- Returns:
- A Promisethat is guaranted to be completed once the provided callback has been executed.
 
- 
thenOnResultOrExceptionSubmits the provided runnable for execution once thisPromisehas completed, and regardless of whether it has a result or an exception.This method can be used for resource cleanup after a series of asynchronous tasks have completed. More specifically, this method should be used in a similar manner to finallystatements intry...catchexpressions.This method is equivalent to thenAlways(Runnable).- Parameters:
- onResultOrException- The runnable which will be notified regardless of the final outcome of this- Promise.
- Returns:
- A Promisethat is guaranteed to be completed once the provided callback has been executed.
 
- 
thenSubmits the provided function for execution once thisPromisehas completed with a result, and returns a newPromiserepresenting the outcome of the function. If thisPromisedoes not complete with a result then the function will not be invoked and the exception will be forwarded to the returnedPromise.This method can be used for transforming the result of an asynchronous task. - Type Parameters:
- VOUT- The type of the function's result, or- Voidif the function does not return anything (i.e. it only has side-effects). Note that the type may be different to the type of this- Promise.
- Parameters:
- onResult- The function which will be executed upon successful completion of this- Promise.
- Returns:
- A new Promiserepresenting the outcome of the function.
 
- 
thenCatchSubmits the provided function for execution once thisPromisehas not completed with a result (has completed with an exception), and returns a newPromiserepresenting the outcome of the function. If thisPromisecompletes with a result then the function will not be invoked and the result notification will be forwarded to the returnedPromise.This method can be used for transforming the result of an asynchronous task. - Type Parameters:
- EOUT- The type of the exception thrown by the function if it fails, or- NeverThrowsExceptionif it cannot fails. Note that the type may be different to the type of this- Promise.
- Parameters:
- onException- The function which will be executed upon failure completion of this- Promise.
- Returns:
- A new Promiserepresenting the outcome of the function.
 
- 
thenCatchRuntimeExceptionSubmits the provided function for execution once thisPromisehas not completed with a result nor with an exception but with aRuntimeException, and returns a newPromiserepresenting the outcome of the function. If thisPromisecompletes with a result or an exception then the function will not be invoked and the result notification will be forwarded to the returnedPromise.This method can be used for transforming the result of an asynchronous task. - Parameters:
- onRuntimeException- The function which will be executed upon failure completion of this- Promise.
- Returns:
- A new Promiserepresenting the outcome of the function.
 
- 
thenCatchRuntimeExceptionAsyncPromise<V,E> thenCatchRuntimeExceptionAsync(AsyncFunction<? super RuntimeException, V, E> onRuntimeException) Submits the provided asynchronous function for execution once thisPromisehas completed with aRuntimeException, and returns a newPromiserepresenting the outcome of the function. If thisPromisecompletes with a result or the typed exception then the completion asynchronous function will not be called.This method may be used for chaining together a series of asynchronous tasks. - Parameters:
- onRuntimeException- The asynchronous function which will be executed upon failure completion with a- RuntimeExceptionof this- Promise.
- Returns:
- A new Promiserepresenting the outcome of the function.
 
- 
then<VOUT,EOUT extends Exception> Promise<VOUT,EOUT> then(Function<? super V, VOUT, EOUT> onResult, Function<? super E, VOUT, EOUT> onException) Submits the provided functions for execution once thisPromisehas completed (with a result or an exception), and returns a newPromiserepresenting the outcome of the invoked function. If thisPromisecompletes with a result thenonResultwill be invoked with the result, otherwiseonExceptionwill be invoked with the exception that occurred.This method can be used for transforming the outcome of an asynchronous task. - Type Parameters:
- VOUT- The type of the functions' result, or- Voidif the functions do not return anything (i.e. they only have side-effects). Note that the type may be different to the type of this- Promise.
- EOUT- The type of the exception thrown by the functions if they fail, or- NeverThrowsExceptionif they cannot fail. Note that the type may be different to the type of this- Promise.
- Parameters:
- onResult- The function which will be executed upon successful completion of this- Promise.
- onException- The function which will be executed upon failure of this- Promise.
- Returns:
- A new Promiserepresenting the outcome of the invoked function.
 
- 
then<VOUT,EOUT extends Exception> Promise<VOUT,EOUT> then(Function<? super V, VOUT, EOUT> onResult, Function<? super E, VOUT, EOUT> onException, Function<? super RuntimeException, VOUT, EOUT> onRuntimeException) Submits the provided functions for execution once thisPromisehas completed (with a result or an exception or aRuntimeException), and returns a newPromiserepresenting the outcome of the invoked function. If thisPromisecompletes with a result thenonResultwill be invoked with the result, with aRuntimeExceptionthenonRuntimeExceptionwill be invoked with the runtime exception that occurred, otherwiseonExceptionwill be invoked with the exception that occurred.This method can be used for transforming the outcome of an asynchronous task. - Type Parameters:
- VOUT- The type of the functions' result, or- Voidif the functions do not return anything (i.e. they only have side-effects). Note that the type may be different to the type of this- Promise.
- EOUT- The type of the exception thrown by the functions if they fail, or- NeverThrowsExceptionif they cannot fail. Note that the type may be different to the type of this- Promise.
- Parameters:
- onResult- The function which will be executed upon successful completion of this- Promise.
- onException- The function which will be executed upon failure of this- Promise.
- onRuntimeException- The function which will be executed upon failure with- RuntimeExceptionof this- Promise.
- Returns:
- A new Promiserepresenting the outcome of the invoked function.
 
- 
thenDiscardResultDiscards the promise result if thisPromisehas completed with a result.This method can be used when only a completion signal is expected from an asynchronous operation. It is mainly useful when an API need to return a completion signal (denoted by Promise<Void, ... >) from another promise that already has a specific type.- Returns:
- A new Promiserepresenting the outcome of the invoked function.
 
- 
thenAlwaysSubmits the provided runnable for execution once thisPromisehas completed, and regardless of whether it has a result or an exception.This method can be used for resource cleanup after a series of asynchronous tasks have completed. More specifically, this method should be used in a similar manner to finallystatements intry...catchexpressions.This method is equivalent to thenOnResultOrException(Runnable).- Parameters:
- onResultOrException- The runnable which will be notified regardless of the final outcome of this- Promise.
- Returns:
- A Promisethat is guaranteed to be completed once the provided callback has been executed.
 
- 
thenFinallySubmits the provided runnable for execution once thisPromisehas completed, and regardless of whether of its outcome.This method can be used for resource cleanup after a series of asynchronous tasks have completed. More specifically, this method should be used in a similar manner to finallystatements intry...catchexpressions.This method is equivalent to thenAlways(Runnable).- Parameters:
- onResultOrException- The runnable which will be notified regardless of the final outcome of this- Promise.
- Returns:
- A Promisethat is guaranteed to be completed once the provided callback has been executed.
 
- 
thenAsyncSubmits the provided asynchronous function for execution once thisPromisehas completed with a result, and returns a newPromiserepresenting the outcome of the function. If thisPromisecomplete with an exception then the function will not be invoked and the error will be forwarded to the returnedPromise.This method may be used for chaining together a series of asynchronous tasks. - Type Parameters:
- VOUT- The type of the function's result, or- Voidif the function does not return anything (i.e. it only has side-effects). Note that the type may be different to the type of this- Promise.
- Parameters:
- onResult- The asynchronous function which will be executed upon successful completion of this- Promise.
- Returns:
- A new Promiserepresenting the outcome of the function.
 
- 
thenCatchAsync<EOUT extends Exception> Promise<V,EOUT> thenCatchAsync(AsyncFunction<? super E, V, EOUT> onException) Submits the provided asynchronous function for execution once thisPromisehas completed with an exception, and returns a newPromiserepresenting the outcome of the function. If thisPromisecompletes with a result then the function will not be invoked and the exception will be forwarded to the returnedPromise.This method may be used for chaining together a series of asynchronous tasks. - Type Parameters:
- EOUT- The type of the exception thrown by the function if it fails, or- NeverThrowsExceptionif it cannot fails. Note that the type may be different to the type of this- Promise.
- Parameters:
- onException- The asynchronous function which will be executed upon failure completion of this- Promise.
- Returns:
- A new Promiserepresenting the outcome of the function.
 
- 
thenAsync<VOUT,EOUT extends Exception> Promise<VOUT,EOUT> thenAsync(AsyncFunction<? super V, VOUT, EOUT> onResult, AsyncFunction<? super E, VOUT, EOUT> onException) Submits the provided asynchronous functions for execution once thisPromisehas completed, and returns a newPromiserepresenting the outcome of the invoked function. If thisPromisecompletes with a result thenonResultwill be invoked with the result, otherwiseonExceptionwill be invoked with the exception that occurred.This method may be used for chaining together a series of asynchronous tasks. - Type Parameters:
- VOUT- The type of the functions' result, or- Voidif the functions do not return anything (i.e. they only have side-effects). Note that the type may be different to the type of this- Promise.
- EOUT- The type of the exception thrown by the functions if they fail, or- NeverThrowsExceptionif they cannot fail. Note that the type may be different to the type of this- Promise.
- Parameters:
- onResult- The asynchronous function which will be executed upon successful completion of this- Promise.
- onException- The asynchronous function which will be executed upon failure of this- Promise.
- Returns:
- A new Promiserepresenting the outcome of the invoked function.
 
- 
thenAsync<VOUT,EOUT extends Exception> Promise<VOUT,EOUT> thenAsync(AsyncFunction<? super V, VOUT, EOUT> onResult, AsyncFunction<? super E, VOUT, EOUT> onException, AsyncFunction<? super RuntimeException, VOUT, EOUT> onRuntimeException) Submits the provided asynchronous functions for execution once thisPromisehas completed, and returns a newPromiserepresenting the outcome of the invoked function. If thisPromisecompletes with a result thenonResultwill be invoked with the result, otherwiseonExceptionwill be invoked with the exception that occurred, oronRuntimeExceptionwill be invoked with the runtime exception that occurred.This method may be used for chaining together a series of asynchronous tasks. - Type Parameters:
- VOUT- The type of the functions' result, or- Voidif the functions do not return anything (i.e. they only have side-effects). Note that the type may be different to the type of this- Promise.
- EOUT- The type of the exception thrown by the functions if they fail, or- NeverThrowsExceptionif they cannot fail. Note that the type may be different to the type of this- Promise.
- Parameters:
- onResult- The asynchronous function which will be executed upon successful completion of this- Promise.
- onException- The asynchronous function which will be executed upon failure of this- Promise.
- onRuntimeException- The asynchronous function which will be executed upon failure with- RuntimeExceptionof this- Promise.
- Returns:
- A new Promiserepresenting the outcome of the invoked function.
 
- 
thenOnRuntimeExceptionRegisters the provided completion handler for notification if thisPromisecannot be completed due to an runtime exception. If thisPromisecompletes with a result or the typed exception then the completion handler will not be notified.This method can be used for asynchronous completion notification. - Parameters:
- onRuntimeException- The completion handler which will be notified upon an uncaught runtime exception completion of this- Promise.
- Returns:
- A Promisethat is guaranteed to be completed once the provided callback has been executed.
 
- 
thenOnCompletion<T extends ResultHandler<? super V> & ExceptionHandler<? super E> & RuntimeExceptionHandler> Promise<V,E> thenOnCompletion(T handler) Registers the provided completion handler for notification for all completion cases of thisPromise.This method can be used for asynchronous completion notification. - Type Parameters:
- T- the composite type of the handler for handling all completion cases
- Parameters:
- handler- The handler that will be called once this- Promiseis completed.
- Returns:
- A Promisethat is guaranteed to be completed once the provided callback has been executed.
 
 
-