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 Details

    • createExecutionManager

      ExecutionManager createExecutionManager(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(String name, int threadCount, ThreadFactory factory)