Eu vi Parallel.ForEach usado de forma inadequada e achei que um exemplo nesta pergunta ajudaria.
Ao executar o código abaixo em um aplicativo de console, você verá como as tarefas executadas no Parallel.ForEach não bloqueiam o segmento de chamada. Isso pode ser bom se você não se importar com o resultado (positivo ou negativo), mas se precisar do resultado, certifique-se de usar o Task.WhenAll.
using System;
using System.Linq;
using System.Threading.Tasks;
namespace ParrellelEachExample
{
class Program
{
static void Main(string[] args)
{
var indexes = new int[] { 1, 2, 3 };
RunExample((prefix) => Parallel.ForEach(indexes, (i) => DoSomethingAsync(i, prefix)),
"Parallel.Foreach");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("*You'll notice the tasks haven't run yet, because the main thread was not blocked*");
Console.WriteLine("Press any key to start the next example...");
Console.ReadKey();
RunExample((prefix) => Task.WhenAll(indexes.Select(i => DoSomethingAsync(i, prefix)).ToArray()).Wait(),
"Task.WhenAll");
Console.WriteLine("All tasks are done. Press any key to close...");
Console.ReadKey();
}
static void RunExample(Action<string> action, string prefix)
{
Console.ForegroundColor = ConsoleColor.White;
Console.WriteLine($"{Environment.NewLine}Starting '{prefix}'...");
action(prefix);
Console.WriteLine($"{Environment.NewLine}Finished '{prefix}'{Environment.NewLine}");
}
static async Task DoSomethingAsync(int i, string prefix)
{
await Task.Delay(i * 1000);
Console.WriteLine($"Finished: {prefix}[{i}]");
}
}
}
Aqui está o resultado:
Conclusão:
Usar o Parallel.ForEach com uma tarefa não bloqueará o thread de chamada. Se você se importa com o resultado, aguarde as tarefas.
~ Felicidades
Task.WaitAll
vez deTask.WhenAll
.