C# TPL 如何知道所有任务都已完成?
我有生成任务的循环。
代码:
Task task = null;
foreach (Entity a in AAAA)
{
// create the task
task = new Task(() => {
myMethod(a);
}, Token, TaskCreationOptions.None);
task.Start();
}
正如您在每次迭代中看到的任务对象都有新的初始化(..new Task(() =>..) 我怎么知道所有任务都已完成?
I have the Loop which generates tasks.
Code:
Task task = null;
foreach (Entity a in AAAA)
{
// create the task
task = new Task(() => {
myMethod(a);
}, Token, TaskCreationOptions.None);
task.Start();
}
As you can see in each iteration task object has new initialization (..new Task(() =>..)
How can I know that all tasks done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果将其替换为
然后,您将在 ForEach 末尾自动等待所有任务。
也许可以从单独的任务运行 ForEach。
I f you replace this with a
Then you get an automatic Wait on all tasks at the end of the ForEach.
And maybe run the ForEach from a separate Task.
您需要保留对循环中创建的所有任务的引用。然后您可以使用
Task.WaitAll
方法(请参阅 MSDN参考)。您可以创建一个数组并将任务分配给该数组的元素(在 C# 2.0 中),也可以使用 LINQ:如果您不需要(显式)使用任务,则 Henk 建议使用 Parallel.ForEach code> 可能是更好的选择。
You'll need to keep references to all the tasks created in the loop. Then you can use the
Task.WaitAll
method (see MSDN reference). You can either create an array and assign tasks to elements of the array (in C# 2.0) or you can use LINQ:If you don't need to use tasks (explicitly) then Henk's suggestion to use
Parallel.ForEach
is probably a better option.