java.lang.Object
org.evrete.util.DelegatingExecutorService
- All Implemented Interfaces:
Executor,ExecutorService
A wrapper for an
ExecutorService that supports an externally supplied or internally created instance.
If a null ExecutorService is provided, the wrapper will create its own instance.
The shutdown and shutdownNow methods will only operate on the internally
created ExecutorService.-
Constructor Summary
ConstructorsConstructorDescriptionDelegatingExecutorService(int threads, boolean daemonThreads) Constructs aDelegatingExecutorServicewith internalExecutorService.DelegatingExecutorService(ExecutorService delegate) Constructs aDelegatingExecutorServicewith the specifiedExecutorService. -
Method Summary
Modifier and TypeMethodDescriptionbooleanawaitTermination(long timeout, TimeUnit unit) voidinvokeAll(Collection<? extends Callable<T>> tasks) invokeAll(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) <T> TinvokeAny(Collection<? extends Callable<T>> tasks) <T> TinvokeAny(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) booleanbooleanvoidshutdown()Future<?><T> Future<T><T> Future<T>
-
Constructor Details
-
DelegatingExecutorService
Constructs aDelegatingExecutorServicewith the specifiedExecutorService.- Parameters:
delegate- theExecutorServiceto delegate to
-
DelegatingExecutorService
public DelegatingExecutorService(int threads, boolean daemonThreads) Constructs aDelegatingExecutorServicewith internalExecutorService.- Parameters:
threads- number of thread to use
-
-
Method Details
-
shutdown
public void shutdown()- Specified by:
shutdownin interfaceExecutorService
-
shutdownNow
- Specified by:
shutdownNowin interfaceExecutorService
-
isShutdown
public boolean isShutdown()- Specified by:
isShutdownin interfaceExecutorService
-
isTerminated
public boolean isTerminated()- Specified by:
isTerminatedin interfaceExecutorService
-
awaitTermination
- Specified by:
awaitTerminationin interfaceExecutorService- Throws:
InterruptedException
-
submit
- Specified by:
submitin interfaceExecutorService
-
submit
- Specified by:
submitin interfaceExecutorService
-
submit
- Specified by:
submitin interfaceExecutorService
-
invokeAll
public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks) throws InterruptedException - Specified by:
invokeAllin interfaceExecutorService- Throws:
InterruptedException
-
invokeAll
public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) throws InterruptedException - Specified by:
invokeAllin interfaceExecutorService- Throws:
InterruptedException
-
invokeAny
public <T> T invokeAny(Collection<? extends Callable<T>> tasks) throws InterruptedException, ExecutionException - Specified by:
invokeAnyin interfaceExecutorService- Throws:
InterruptedExceptionExecutionException
-
invokeAny
public <T> T invokeAny(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException - Specified by:
invokeAnyin interfaceExecutorService- Throws:
InterruptedExceptionExecutionExceptionTimeoutException
-
execute
-