小编典典

等待未来的名单

all

我有一个返回List期货的方法

List<Future<O>> futures = getFutures();

现在我想等到所有期货都成功处理完毕,或者任何由未来返回输出的任务引发异常。即使一个任务抛出异常,等待其他未来也没有意义。

简单的方法是

wait() {

   For(Future f : futures) {
     try {
       f.get();
     } catch(Exception e) {
       //TODO catch specific exception
       // this future threw exception , means somone could not do its task
       return;
     }
   }
}

但是这里的问题是,例如,如果第 4 个 future 抛出异常,那么我将不必要地等待前 3 个 future 可用。

如何解决这个问题?倒计时闩锁会以任何方式提供帮助吗?我无法使用 FutureisDone因为 java doc 说

boolean isDone()
Returns true if this task completed. Completion may be due to normal termination, an exception, or cancellation -- in all of these cases, this method will return true.

阅读 62

收藏
2022-07-08

共1个答案

小编典典

您可以使用CompletionService在期货准备好后立即接收它们,如果其中一个引发异常,则取消处理。像这样的东西:

Executor executor = Executors.newFixedThreadPool(4);
CompletionService<SomeResult> completionService = 
       new ExecutorCompletionService<SomeResult>(executor);

//4 tasks
for(int i = 0; i < 4; i++) {
   completionService.submit(new Callable<SomeResult>() {
       public SomeResult call() {
           ...
           return result;
       }
   });
}

int received = 0;
boolean errors = false;

while(received < 4 && !errors) {
      Future<SomeResult> resultFuture = completionService.take(); //blocks if none available
      try {
         SomeResult result = resultFuture.get();
         received ++;
         ... // do something with the result
      }
      catch(Exception e) {
             //log
         errors = true;
      }
}

如果其中一个引发错误,我认为您可以进一步改进以取消任何仍在执行的任务。

2022-07-08