Uses of Class java.util.concurrent.ExecutionException

Uses in package java.util.concurrent

Methods which throw type java.util.concurrent.ExecutionException

Executes the given tasks, returning the result of one that has completed successfully (i.e., without throwing an exception), if any do.
ExecutorService.T invokeAny(Callable> tasks)
Executes the given tasks, returning the result of one that has completed successfully (i.e., without throwing an exception), if any do.
AbstractExecutorService.T invokeAny(Callable> tasks, long timeout, TimeUnit unit)
Executes the given tasks, returning the result of one that has completed successfully (i.e., without throwing an exception), if any do before the given timeout elapses.
ExecutorService.T invokeAny(Callable> tasks, long timeout, TimeUnit unit)
Executes the given tasks, returning the result of one that has completed successfully (i.e., without throwing an exception), if any do before the given timeout elapses.
V
Waits if necessary for the computation to complete, and then retrieves its result.
V
V
Future<V>.get(long timeout, TimeUnit unit)
Waits if necessary for at most the given time for the computation to complete, and then retrieves its result, if available.
V
FutureTask<V>.get(long timeout, TimeUnit unit)