问题描述
如果我们使用,我们可以提交系列任务作为 Callable
s并获得结果与 CompletionService
交互作为队列
。
If we use an ExecutorCompletionService we can submit a series of tasks as Callable
s and get the result interacting with the CompletionService
as a queue
.
但也有 ExecutorService
的 invokeAll
接受一个 Collection
的任务,我们得到一个 Future
的列表来检索结果。
But there is also the invokeAll
of ExecutorService
that accepts a Collection
of tasks and we get a list of Future
to retrieve the results.
据我所知,使用一个或另一个没有好处(除了我们避免 for
循环使用 invokeAll
,我们将提交
任务到 CompletionService
),基本上他们是相同的想法与一个微小的差别。
As far as I can tell, there is no benefit in using one or over the other (except that we avoid a for
loop using an invokeAll
that we would have to submit
the tasks to the CompletionService
) and essentially they are the same idea with a slight difference.
那么为什么有两种不同的方式来提交一系列任务呢?我是否纠正性能明智他们是等价的?有没有一个比另一个更适合的情况?我不能想到一个。
So why are there 2 different ways to submit a series of tasks? Am I correct that performance wise they are equivalent? Is there a case that one is more suitable than the other? I can't think of one.
推荐答案
使用 ExecutorCompletionService.poll / take
,您将在完成顺序(或多或少)中收到未来
。使用 ExecutorService.invokeAll
,你没有这个权力;
Using a ExecutorCompletionService.poll/take
, you are receiving the Future
s as they finish, in completion order (more or less). Using ExecutorService.invokeAll
, you do not have this power; you either block until are all completed, or you specify a timeout after which the incomplete are cancelled.
static class SleepingCallable implements Callable<String> {
final String name;
final long period;
SleepingCallable(final String name, final long period) {
this.name = name;
this.period = period;
}
public String call() {
try {
Thread.sleep(period);
} catch (InterruptedException ex) { }
return name;
}
}
下面我将演示如何 invokeAll
工程:
Now, below I will demonstrate how invokeAll
works:
final ExecutorService pool = Executors.newFixedThreadPool(2);
final List<? extends Callable<String>> callables = Arrays.asList(
new SleepingCallable("quick", 500),
new SleepingCallable("slow", 5000));
try {
for (final Future<String> future : pool.invokeAll(callables)) {
System.out.println(future.get());
}
} catch (ExecutionException | InterruptedException ex) { }
pool.shutdown();
这将产生以下输出:
C:\dev\scrap>java CompletionExample
... after 5 s ...
quick
slow
使用 CompletionService
看到不同的输出:
final ExecutorService pool = Executors.newFixedThreadPool(2);
final CompletionService<String> service = new ExecutorCompletionService<String>(pool);
final List<? extends Callable<String>> callables = Arrays.asList(
new SleepingCallable("slow", 5000),
new SleepingCallable("quick", 500));
for (final Callable<String> callable : callables) {
service.submit(callable);
}
pool.shutdown();
try {
while (!pool.isTerminated()) {
final Future<String> future = service.take();
System.out.println(future.get());
}
} catch (ExecutionException | InterruptedException ex) { }
以下输出:
C:\dev\scrap>java CompletionExample
... after 500 ms ...
quick
... after 5 s ...
slow
$ b b
请注意,时间是相对于程序启动的,而不是上一个消息。
Note the times are relative to program start, not the previous message.
。
这篇关于ExecutorCompletionService?为什么需要一个如果我们有invokeAll?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!