参见英文答案 > How to wait for all threads to finish, using ExecutorService? 24个
我需要提交一些任务,然后等待所有结果,直到所有结果都可用.它们中的每一个都向Vector添加一个String(默认情况下是同步的).然后我需要为Vector中的每个结果启动一个新任务,但是只有当所有先前的任务都停止了它们的工作时我才需要这样做.
我想使用Java Executor,特别是我尝试使用Executors.newFixedThreadPool(100)来使用固定数量的线程(我有一个可变数量的任务,可以是10或500)但我是执行器和我不知道如何等待任务终止.
这就像我的程序需要做的伪代码:
ExecutorService e = Executors.newFixedThreadPool(100);
while(true){
/*do something*/
for(...){
<start task>
}
<wait for all task termination>
for each String in result{
<start task>
}
<wait for all task termination>
}
我不能做e.shutdown,因为我有一段时间(真的)我需要重用executorService …
你能帮助我吗?你能给我一个关于java执行器的指南/书吗?
解决方法:
ExecutorService为您提供了一种机制,可以同时执行多个任务并获取Future对象的集合(表示任务的异步计算).
Collection<Callable<?>> tasks = new LinkedList<Callable<?>>();
//populate tasks
for (Future<?> f : executorService.invokeAll(tasks)) { //invokeAll() blocks until ALL tasks submitted to executor complete
f.get();
}
如果你有Runnables而不是Callables,你可以轻松地将Runnable变成Callable< Object>使用方法:
Callable<?> c = Executors.callable(runnable);