Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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++) {

    taskHandles.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.
like image 585
Jeff Meatball Yang Avatar asked Dec 17 '22 21:12

Jeff Meatball Yang


1 Answers

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.

like image 172
Henk Holterman Avatar answered Jun 06 '23 09:06

Henk Holterman