Package ubic.gemma.core.util.concurrent
Interface DelegatingExecutorService
-
- All Superinterfaces:
DelegatingExecutor
,Executor
,ExecutorService
- All Known Subinterfaces:
DelegatingScheduledExecutorService
- All Known Implementing Classes:
AbstractDelegatingExecutorService
,BatchTaskExecutorService
,DelegatingThreadContextExecutorService
,DelegatingThreadContextScheduledExecutorService
public interface DelegatingExecutorService extends ExecutorService, DelegatingExecutor
An interface forExecutorService
that delegate to anotherExecutorService
.- Author:
- poirigui
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExecutorService
getDelegate()
The executor this is delegating for.-
Methods inherited from interface java.util.concurrent.ExecutorService
awaitTermination, invokeAll, invokeAll, invokeAny, invokeAny, isShutdown, isTerminated, shutdown, shutdownNow, submit, submit, submit
-
-
-
-
Method Detail
-
getDelegate
ExecutorService getDelegate()
Description copied from interface:DelegatingExecutor
The executor this is delegating for.- Specified by:
getDelegate
in interfaceDelegatingExecutor
-
-