我有这个方法: private static async Task MyMethod(); 它以这种方式调用:
public static void Main()
{
s_Finishing = false;
Task printTask = PrintStatistics();
MyMethod(serversSawa, serversSterling).Wait();
s_Finishing = true;
}
我希望PrintStatistics只有在MyMethod完成后才会停止运行。但不幸的是,它并没有。如果我评论该行s_Finishing = true;
该任务将永远运行 - 并允许完成MyMethod
我该如何解决这个问题?
private static async Task PrintStatistics()
{
while (!s_Finishing)
{
long total = 0;
await Task.Delay(TimeSpan.FromSeconds(20));
foreach (var statistic in s_Statistics)
{
ToolsTracer.Trace("{0}:{1}", statistic.Key, statistic.Value);
total += statistic.Value;
}
foreach (var statistic in s_StatisticsRegion)
{
ToolsTracer.Trace("{0}:{1}", statistic.Key, statistic.Value);
}
ToolsTracer.Trace("TOTAL:{0}", total);
ToolsTracer.Trace("TIME:{0}", s_StopWatch.Elapsed);
}
}
private static async Task MyMethod()
{
Parallel.ForEach(
data,
new ParallelOptions { MaxDegreeOfParallelism = 20 }, async serverAndCluster =>
{
await someMethod() });
}
答案 0 :(得分:0)
我相信你的问题在这里:
Parallel.ForEach(..., async ...);
您无法将async
与ForEach
一起使用。 需要在同一方法中同时执行并行(CPU绑定)和async
(I / O绑定)的情况极为罕见。如果您只想要并发(我怀疑),请使用Task.WhenAll
而不是ForEach
。如果您确实需要CPU并行性和async
,那么请使用TPL Dataflow。