Interface ListeningExecutorService
-
- All Superinterfaces:
java.util.concurrent.Executor
,java.util.concurrent.ExecutorService
- All Known Subinterfaces:
ListeningScheduledExecutorService
- All Known Implementing Classes:
AbstractListeningExecutorService
,ForwardingListeningExecutorService
@DoNotMock("Use TestingExecutors.sameThreadScheduledExecutor, or wrap a real Executor from java.util.concurrent.Executors with MoreExecutors.listeningDecorator") @GwtIncompatible public interface ListeningExecutorService extends java.util.concurrent.ExecutorService
AnExecutorService
that returnsListenableFuture
instances. To create an instance from an existingExecutorService
, callMoreExecutors.listeningDecorator(ExecutorService)
.- Since:
- 10.0
- Author:
- Chris Povirk
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default boolean
awaitTermination(java.time.Duration timeout)
Duration-based overload ofExecutorService.awaitTermination(long, TimeUnit)
.<T extends @Nullable java.lang.Object>
java.util.List<java.util.concurrent.Future<T>>invokeAll(java.util.Collection<? extends java.util.concurrent.Callable<T>> tasks)
<T extends @Nullable java.lang.Object>
java.util.List<java.util.concurrent.Future<T>>invokeAll(java.util.Collection<? extends java.util.concurrent.Callable<T>> tasks, long timeout, java.util.concurrent.TimeUnit unit)
default <T extends @Nullable java.lang.Object>
java.util.List<java.util.concurrent.Future<T>>invokeAll(java.util.Collection<? extends java.util.concurrent.Callable<T>> tasks, java.time.Duration timeout)
Duration-based overload ofinvokeAll(Collection, long, TimeUnit)
.default <T extends @Nullable java.lang.Object>
TinvokeAny(java.util.Collection<? extends java.util.concurrent.Callable<T>> tasks, java.time.Duration timeout)
Duration-based overload ofExecutorService.invokeAny(Collection, long, TimeUnit)
.ListenableFuture<?>
submit(java.lang.Runnable task)
<T extends @Nullable java.lang.Object>
ListenableFuture<T>submit(java.lang.Runnable task, T result)
<T extends @Nullable java.lang.Object>
ListenableFuture<T>submit(java.util.concurrent.Callable<T> task)
-
-
-
Method Detail
-
submit
<T extends @Nullable java.lang.Object> ListenableFuture<T> submit(java.util.concurrent.Callable<T> task)
- Specified by:
submit
in interfacejava.util.concurrent.ExecutorService
- Returns:
- a
ListenableFuture
representing pending completion of the task - Throws:
java.util.concurrent.RejectedExecutionException
-
submit
ListenableFuture<?> submit(java.lang.Runnable task)
- Specified by:
submit
in interfacejava.util.concurrent.ExecutorService
- Returns:
- a
ListenableFuture
representing pending completion of the task - Throws:
java.util.concurrent.RejectedExecutionException
-
submit
<T extends @Nullable java.lang.Object> ListenableFuture<T> submit(java.lang.Runnable task, T result)
- Specified by:
submit
in interfacejava.util.concurrent.ExecutorService
- Returns:
- a
ListenableFuture
representing pending completion of the task - Throws:
java.util.concurrent.RejectedExecutionException
-
invokeAll
<T extends @Nullable java.lang.Object> java.util.List<java.util.concurrent.Future<T>> invokeAll(java.util.Collection<? extends java.util.concurrent.Callable<T>> tasks) throws java.lang.InterruptedException
All elements in the returned list must be
ListenableFuture
instances. The easiest way to obtain aList<ListenableFuture<T>>
from this method is an unchecked (but safe) cast:@SuppressWarnings("unchecked") // guaranteed by invokeAll contract
List<ListenableFuture<T>> futures = (List) executor.invokeAll(tasks);
- Specified by:
invokeAll
in interfacejava.util.concurrent.ExecutorService
- Returns:
- A list of
ListenableFuture
instances representing the tasks, in the same sequential order as produced by the iterator for the given task list, each of which has completed. - Throws:
java.util.concurrent.RejectedExecutionException
java.lang.NullPointerException
- if any task is nulljava.lang.InterruptedException
-
invokeAll
<T extends @Nullable java.lang.Object> java.util.List<java.util.concurrent.Future<T>> invokeAll(java.util.Collection<? extends java.util.concurrent.Callable<T>> tasks, long timeout, java.util.concurrent.TimeUnit unit) throws java.lang.InterruptedException
All elements in the returned list must be
ListenableFuture
instances. The easiest way to obtain aList<ListenableFuture<T>>
from this method is an unchecked (but safe) cast:@SuppressWarnings("unchecked") // guaranteed by invokeAll contract
List<ListenableFuture<T>> futures = (List) executor.invokeAll(tasks, timeout, unit);
- Specified by:
invokeAll
in interfacejava.util.concurrent.ExecutorService
- Returns:
- a list of
ListenableFuture
instances representing the tasks, in the same sequential order as produced by the iterator for the given task list. If the operation did not time out, each task will have completed. If it did time out, some of these tasks will not have completed. - Throws:
java.util.concurrent.RejectedExecutionException
java.lang.NullPointerException
- if any task is nulljava.lang.InterruptedException
-
invokeAll
default <T extends @Nullable java.lang.Object> java.util.List<java.util.concurrent.Future<T>> invokeAll(java.util.Collection<? extends java.util.concurrent.Callable<T>> tasks, java.time.Duration timeout) throws java.lang.InterruptedException
Duration-based overload ofinvokeAll(Collection, long, TimeUnit)
.- Throws:
java.lang.InterruptedException
- Since:
- 32.1.0
-
invokeAny
default <T extends @Nullable java.lang.Object> T invokeAny(java.util.Collection<? extends java.util.concurrent.Callable<T>> tasks, java.time.Duration timeout) throws java.lang.InterruptedException, java.util.concurrent.ExecutionException, java.util.concurrent.TimeoutException
Duration-based overload ofExecutorService.invokeAny(Collection, long, TimeUnit)
.- Throws:
java.lang.InterruptedException
java.util.concurrent.ExecutionException
java.util.concurrent.TimeoutException
- Since:
- 32.1.0
-
awaitTermination
default boolean awaitTermination(java.time.Duration timeout) throws java.lang.InterruptedException
Duration-based overload ofExecutorService.awaitTermination(long, TimeUnit)
.- Throws:
java.lang.InterruptedException
- Since:
- 32.1.0
-
-