开发者

Waiting for all tasks to finish using Task Parallel Library in .NET 4.0

开发者 https://www.devze.com 2023-01-15 13:19 出处:网络
Is there a shorter way to wait for multiple threads to finish?Maybe using ContinueWhenAll... but I don\'t want to run the rest of my code async.

Is there a shorter way to wait for multiple threads to finish? Maybe using ContinueWhenAll... but I don't want to run the rest of my code async.

List<object> objList = // something

List<Task> taskHandles = new List<Task>();
for(int i = 0; i < objList.Count; i++) {

    tas开发者_运维技巧kHandles.Add(Task.Factory.StartNew(() => { Process(objList[i]); }));

}

foreach(Task t in taskHandles) { t.Wait(); }

DoSomeSync1();
..
DoSomeSync2();
..
DoSomeSync3();
..

// I could have used ContinueWhenAll(waitHandles, (antecedent) => { DoSomeSync...; });
// but I'd rather not have to do that.
// It would be nice if I could have just done:

Parallel.ForEach(objList, (obj) => { Process(obj); }).WaitAll();

// or something like that.


If you replace the for() loop with Parallel.For() or Parallel.ForEach() you don't need a Task list or anything. I'm not sure why you would want a .WaitAll() after a ForEach, doesn't even seem necessary.

The Parallel loops stop when all Tasks are done.

0

精彩评论

暂无评论...
验证码 换一张
取 消