Interface WrappedExecutorService
- All Superinterfaces:
AutoCloseable, Executor, ExecutorService
Marker interface for executor service wrappers that delegate to an underlying executor.
- Since:
- 16.2
- Author:
- William Burns
-
Method Summary
Modifier and TypeMethodDescriptionunwrap()Returns the underlying executor service that this wrapper delegates to.Methods inherited from interface ExecutorService
awaitTermination, close, invokeAll, invokeAll, invokeAny, invokeAny, isShutdown, isTerminated, shutdown, shutdownNow, submit, submit, submit
-
Method Details
-
unwrap
ExecutorService unwrap()Returns the underlying executor service that this wrapper delegates to.- Returns:
- the wrapped executor service
-