4

关闭执行程序时我应该在哪里捕获 RejectedExecutionExceptions ?我试过了:

 future {
        Option(reader.readLine)
      } onComplete {
        case Success(v) =>
        case Failure(e) => e match {
          case ree: RejectedExecutionException =>
          // doesn't work
      }

和 :

 try {
        future {
          Option(reader.readLine)
        } onComplete {
          ...
        }
      } catch {
        case ree: RejectedExecutionException =>
          // doesn't work
      }

也不起作用。仍然得到:

Exception in thread "pool-99-thread-1" java.util.concurrent.RejectedExecutionException
at java.util.concurrent.ThreadPoolExecutor$AbortPolicy.rejectedExecution(ThreadPoolExecutor.java:1768)
at java.util.concurrent.ThreadPoolExecutor.reject(ThreadPoolExecutor.java:767)
at java.util.concurrent.ThreadPoolExecutor.execute(ThreadPoolExecutor.java:658)
at scala.concurrent.impl.ExecutionContextImpl.execute(ExecutionContextImpl.scala:105)
at scala.concurrent.impl.CallbackRunnable.executeWithValue(Promise.scala:37)
at scala.concurrent.impl.Promise$DefaultPromise.tryComplete(Promise.scala:133)
at scala.concurrent.Promise$class.complete(Promise.scala:55)
at scala.concurrent.impl.Promise$DefaultPromise.complete(Promise.scala:58)
at scala.concurrent.impl.Future$PromiseCompletingRunnable.run(Future.scala:23)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:662)
4

2 回答 2

5

它必须由 RejectedExecutionHandler 处理。或者java.util.concurrent.ThreadPoolExecutor.DiscardPolicy通过您的自定义实现。

这个执行器默默地传递了 RejectedExecutionException:

val executorService = new ThreadPoolExecutor(1, 1, 0L, TimeUnit.MILLISECONDS, new LinkedBlockingQueue[Runnable], Executors.defaultThreadFactory, new DiscardPolicy)
于 2013-07-22T08:18:35.117 回答
2

我在这个线程中问过这个问题。

我觉得当前注册的回调应该在关机时完成,如果它们在同一个执行器上运行。(或者行为应该由政策管理。)(总有一天我会为我描述的内容提交 PR,因为它看起来很自然。)

我之前有一个设置,其中单线程执行程序读取一些文件并将作业提供给另一个池。最初的设计是让馈线通过阻止提交来限制自己。这没问题,但不够灵活。我想在第二个池上分叉一些任务,但当然提交会在那里阻塞。

所以,鉴于阻塞是邪恶的,一旦你知道你不能运行它们,你就必须决定如何处理你的任务。

一个答案是您在启动关机之前等待静止。就我而言,我有许多工作要完成,所以我知道工作什么时候完成。

Viktor Klang 在该线程中的观点是,任务一直被分叉和提交,所以如果有人知道静止意味着什么,那就是应用程序,而不是基础设施。

于 2013-07-22T09:46:12.423 回答