Executor, ExecutorServicepublic class ForwardingExecutorService<T extends ExecutorService> extends Object implements ExecutorService
| Constructor | Description |
|---|---|
ForwardingExecutorService(T delegate) |
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
awaitTermination(long timeout,
TimeUnit unit) |
|
void |
execute(Runnable command) |
|
<T> List<Future<T>> |
invokeAll(Collection<? extends Callable<T>> tasks) |
|
<T> List<Future<T>> |
invokeAll(Collection<? extends Callable<T>> tasks,
long timeout,
TimeUnit unit) |
|
<T> T |
invokeAny(Collection<? extends Callable<T>> tasks) |
|
<T> T |
invokeAny(Collection<? extends Callable<T>> tasks,
long timeout,
TimeUnit unit) |
|
boolean |
isShutdown() |
|
boolean |
isTerminated() |
|
void |
shutdown() |
|
List<Runnable> |
shutdownNow() |
|
Future<?> |
submit(Runnable task) |
|
<T> Future<T> |
submit(Runnable task,
T result) |
|
<T> Future<T> |
submit(Callable<T> task) |
protected final T extends ExecutorService delegate
public ForwardingExecutorService(T delegate)
public void shutdown()
shutdown in interface ExecutorServicepublic List<Runnable> shutdownNow()
shutdownNow in interface ExecutorServicepublic boolean isShutdown()
isShutdown in interface ExecutorServicepublic boolean isTerminated()
isTerminated in interface ExecutorServicepublic boolean awaitTermination(long timeout,
TimeUnit unit)
throws InterruptedException
awaitTermination in interface ExecutorServiceInterruptedExceptionpublic <T> Future<T> submit(Callable<T> task)
submit in interface ExecutorServicepublic <T> Future<T> submit(Runnable task, T result)
submit in interface ExecutorServicepublic Future<?> submit(Runnable task)
submit in interface ExecutorServicepublic <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks) throws InterruptedException
invokeAll in interface ExecutorServiceInterruptedExceptionpublic <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) throws InterruptedException
invokeAll in interface ExecutorServiceInterruptedExceptionpublic <T> T invokeAny(Collection<? extends Callable<T>> tasks) throws InterruptedException, ExecutionException
invokeAny in interface ExecutorServiceInterruptedExceptionExecutionExceptionpublic <T> T invokeAny(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException
invokeAny in interface ExecutorServiceInterruptedExceptionExecutionExceptionTimeoutExceptionCopyright © 2018 Electronic Arts Inc. All rights reserved.