类 SynThreadPoolExecutor

所有已实现的接口:
Executor, ExecutorService

public class SynThreadPoolExecutor extends ThreadPoolExecutor
作者:
tanyaowu 2017年4月26日 下午2:18:30
  • 构造器详细资料

    • SynThreadPoolExecutor

      public SynThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, BlockingQueue<Runnable> runnableQueue, ThreadFactory threadFactory, String name)
      参数:
      corePoolSize -
      maximumPoolSize -
      keepAliveTime - 单位: 秒
      runnableQueue -
      threadFactory -
      name -
    • SynThreadPoolExecutor

      public SynThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, BlockingQueue<Runnable> runnableQueue, ThreadFactory threadFactory, String name, RejectedExecutionHandler rejectedExecutionHandler)
      参数:
      corePoolSize -
      maximumPoolSize -
      keepAliveTime -
      runnableQueue -
      threadFactory -
      name -
      rejectedExecutionHandler -
  • 方法详细资料