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 Summary
All 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
- 
createExecutionManager
ExecutionManager 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. 
- 
createExecutionManager
ExecutionManager createExecutionManager(java.lang.String name, int threadCount, java.util.concurrent.ThreadFactory factory)
 
 - 
 
 -