Interface ExecutionManagerFactory
- All Known Subinterfaces:
GatewayContext
- All Known Implementing Classes:
GatewayContextDecorator
public interface ExecutionManagerFactory
Generates private execution engines that can be used to schedule tasks.
-
Method Summary
Modifier and TypeMethodDescriptioncreateExecutionManager
(String name, int threadCount) Creates a new, private execution engine.createExecutionManager
(String name, int threadCount, ThreadFactory factory)
-
Method Details
-
createExecutionManager
Creates a new, private execution engine. Use this if you have tasks that may block waiting for other things to complete, so that you don't clog up the shared execution engine. -
createExecutionManager
-