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 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)