Module dev.mccue.guava.concurrent
Package dev.mccue.guava.concurrent
Class ForwardingListeningExecutorService
java.lang.Object
dev.mccue.guava.collect.ForwardingObject
dev.mccue.guava.concurrent.ForwardingExecutorService
dev.mccue.guava.concurrent.ForwardingListeningExecutorService
- All Implemented Interfaces:
ListeningExecutorService,Executor,ExecutorService
public abstract class ForwardingListeningExecutorService
extends ForwardingExecutorService
implements ListeningExecutorService
A listening executor service which forwards all its method calls to another listening 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 ForwardingListeningExecutorService.
- Since:
- 10.0
- Author:
- Isaac Shum
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedConstructor for use by subclasses. -
Method Summary
Modifier and TypeMethodDescriptionprotected abstract ListeningExecutorServicedelegate()<T extends @Nullable Object>
ListenableFuture<T><T extends @Nullable Object>
ListenableFuture<T>Methods inherited from class dev.mccue.guava.concurrent.ForwardingExecutorService
awaitTermination, execute, invokeAll, invokeAll, invokeAny, invokeAny, isShutdown, isTerminated, shutdown, shutdownNowMethods inherited from class dev.mccue.guava.collect.ForwardingObject
toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.concurrent.ExecutorService
awaitTermination, invokeAny, invokeAny, isShutdown, isTerminated, shutdown, shutdownNowMethods inherited from interface dev.mccue.guava.concurrent.ListeningExecutorService
awaitTermination, invokeAll, invokeAll, invokeAll, invokeAny
-
Constructor Details
-
ForwardingListeningExecutorService
protected ForwardingListeningExecutorService()Constructor for use by subclasses.
-
-
Method Details
-
delegate
- Specified by:
delegatein classForwardingExecutorService
-
submit
- Specified by:
submitin interfaceExecutorService- Specified by:
submitin interfaceListeningExecutorService- Overrides:
submitin classForwardingExecutorService- Returns:
- a
ListenableFuturerepresenting pending completion of the task
-
submit
- Specified by:
submitin interfaceExecutorService- Specified by:
submitin interfaceListeningExecutorService- Overrides:
submitin classForwardingExecutorService- Returns:
- a
ListenableFuturerepresenting pending completion of the task
-
submit
- Specified by:
submitin interfaceExecutorService- Specified by:
submitin interfaceListeningExecutorService- Overrides:
submitin classForwardingExecutorService- Returns:
- a
ListenableFuturerepresenting pending completion of the task
-