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 CachedThreadPoolExecutorFactory(Log log, RejectedExecutionHandler rejectionHandler)
 {
     this._log = log;
     this._rejectionHandler = rejectionHandler;
 }
 internal ThreadPool(CachedThreadPoolExecutorFactory 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 ThreadPoolExecutor(int prm1, int prm2, long prm3, TimeUnit prm4, BlockingQueue <global::java.lang.Runnable> prm5, RejectedExecutionHandler prm6)
 {
 }
 public virtual void setRejectedExecutionHandler(RejectedExecutionHandler prm1)
 {
 }
Beispiel #6
0
 public ScheduledThreadPoolExecutor(int prm1, ThreadFactory prm2, RejectedExecutionHandler prm3) : base(default(int), default(int), default(long), default(TimeUnit), default(BlockingQueue <global::java.lang.Runnable>), default(ThreadFactory), default(RejectedExecutionHandler))
 {
 }
 public ThreadPoolExecutor(int arg0, int arg1, long arg2, TimeUnit arg3, BlockingQueue<Runnable> arg4, RejectedExecutionHandler arg5)
     : base(ProxyCtor.I)
 {
     Instance.CallConstructor("(IIJLjava/util/concurrent/TimeUnit;Ljava/util/concurrent/BlockingQueue;Ljava/util/concurrent/RejectedExecutionHandler;)V", arg0, arg1, arg2, arg3, arg4, arg5);
 }
 public void setRejectedExecutionHandler(RejectedExecutionHandler arg0)
 {
     Instance.CallMethod("setRejectedExecutionHandler", "(Ljava/util/concurrent/RejectedExecutionHandler;)V", arg0);
 }