Module dev.mccue.guava.concurrent
Package dev.mccue.guava.concurrent
Class ForwardingExecutorService
java.lang.Object
dev.mccue.guava.collect.ForwardingObject
dev.mccue.guava.concurrent.ForwardingExecutorService
- All Implemented Interfaces:
Executor,ExecutorService
- Direct Known Subclasses:
ForwardingListeningExecutorService
public abstract class ForwardingExecutorService
extends dev.mccue.guava.collect.ForwardingObject
implements ExecutorService
An executor service which forwards all its method calls to another executor service. Subclasses
should override one or more methods to modify the behavior of the backing executor service as
desired per the decorator pattern.
default method warning: This class does not forward calls to
default methods. Instead, it inherits their default implementations. When those implementations
invoke methods, they invoke methods on the ForwardingExecutorService.
- Since:
- 10.0
- Author:
- Kurt Alfred Kluever
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedConstructor for use by subclasses. -
Method Summary
Modifier and TypeMethodDescriptionbooleanawaitTermination(long timeout, TimeUnit unit) protected abstract ExecutorServicedelegate()voidinvokeAll(Collection<? extends Callable<T>> tasks) invokeAll(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) <T extends @Nullable Object>
TinvokeAny(Collection<? extends Callable<T>> tasks) <T extends @Nullable Object>
TinvokeAny(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) booleanbooleanvoidshutdown()Future<?>Methods inherited from class dev.mccue.guava.collect.ForwardingObject
toString
-
Constructor Details
-
ForwardingExecutorService
protected ForwardingExecutorService()Constructor for use by subclasses.
-
-
Method Details
-
delegate
- Specified by:
delegatein classdev.mccue.guava.collect.ForwardingObject
-
awaitTermination
@CheckReturnValue public boolean awaitTermination(long timeout, TimeUnit unit) throws InterruptedException - Specified by:
awaitTerminationin interfaceExecutorService- Throws:
InterruptedException
-
invokeAll
public <T extends @Nullable Object> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks) throws InterruptedException - Specified by:
invokeAllin interfaceExecutorService- Throws:
InterruptedException
-
invokeAll
public <T extends @Nullable Object> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) throws InterruptedException - Specified by:
invokeAllin interfaceExecutorService- Throws:
InterruptedException
-
invokeAny
public <T extends @Nullable Object> T invokeAny(Collection<? extends Callable<T>> tasks) throws InterruptedException, ExecutionException - Specified by:
invokeAnyin interfaceExecutorService- Throws:
InterruptedExceptionExecutionException
-
invokeAny
public <T extends @Nullable Object> T invokeAny(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException - Specified by:
invokeAnyin interfaceExecutorService- Throws:
InterruptedExceptionExecutionExceptionTimeoutException
-
isShutdown
public boolean isShutdown()- Specified by:
isShutdownin interfaceExecutorService
-
isTerminated
public boolean isTerminated()- Specified by:
isTerminatedin interfaceExecutorService
-
shutdown
public void shutdown()- Specified by:
shutdownin interfaceExecutorService
-
shutdownNow
- Specified by:
shutdownNowin interfaceExecutorService
-
execute
-
submit
- Specified by:
submitin interfaceExecutorService
-
submit
- Specified by:
submitin interfaceExecutorService
-
submit
- Specified by:
submitin interfaceExecutorService
-