internal NotifyingThreadPoolExecutor(ExecutorBoltSchedulerConcurrencyTest outerInstance, int corePoolSize, int maxPoolSize, Duration keepAlive, BlockingQueue <ThreadStart> workQueue, ThreadFactory threadFactory, RejectedExecutionHandler rejectionHandler) : base(corePoolSize, maxPoolSize, keepAlive.toMillis(), MILLISECONDS, workQueue, threadFactory, rejectionHandler)
 {
     this._outerInstance = outerInstance;
 }
 public NotifyingThreadPoolFactory(ExecutorBoltSchedulerConcurrencyTest outerInstance)
 {
     this._outerInstance = outerInstance;
 }