Interface ExecutionManagerFactory
- 
- All Known Subinterfaces:
- GatewayContext
 - All Known Implementing Classes:
- GatewayContextDecorator
 
 public interface ExecutionManagerFactoryGenerates private execution engines that can be used to schedule tasks.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description ExecutionManagercreateExecutionManager(java.lang.String name, int threadCount)Creates a new, private execution engine.ExecutionManagercreateExecutionManager(java.lang.String name, int threadCount, java.util.concurrent.ThreadFactory factory)
 
- 
- 
- 
Method Detail- 
createExecutionManagerExecutionManager createExecutionManager(java.lang.String name, int threadCount) 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.
 - 
createExecutionManagerExecutionManager createExecutionManager(java.lang.String name, int threadCount, java.util.concurrent.ThreadFactory factory) 
 
- 
 
-