Class ControllerPoolExecutor

All Implemented Interfaces:
AutoCloseable, Executor, ExecutorService

public class ControllerPoolExecutor extends ThreadPoolExecutor
  • Constructor Details

    • ControllerPoolExecutor

      public ControllerPoolExecutor(int corePoolSize, int maximumPoolSize, @Nonnull BlockingQueue<Runnable> workQueue)
    • ControllerPoolExecutor

      public ControllerPoolExecutor(int corePoolSize, int maximumPoolSize, @Nonnull BlockingQueue<Runnable> workQueue, @Nonnull ThreadFactory threadFactory)
    • ControllerPoolExecutor

      public ControllerPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, @Nonnull TimeUnit unit, @Nonnull BlockingQueue<Runnable> workQueue)
    • ControllerPoolExecutor

      public ControllerPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, @Nonnull TimeUnit unit, @Nonnull BlockingQueue<Runnable> workQueue, @Nonnull ThreadFactory threadFactory)
  • Method Details