我正在开发一个 Windows 服务,我有两个相互依赖的相关调用,我想为每个“对”或“一组”调用异步运行。有几种方法可以做到这一点,我尝试了几种不同的方法并解决了这个问题,因为使用一个代码块来处理比两个单独的块具有自己的等待Task.WhenAll()
调用更方便。在我的测试中,这似乎按预期工作,但我以前从未像这样将两个任务链接在一起,我想知道这是否是一个好方法,是否可能有更合适的方法来获得相同的结果(单个代码块)。
这就是我所拥有的。这看起来像是一种合理的链接任务的方式吗?如果不是,请告诉我原因。
提前致谢。-坦率
//get all pending batches
foreach (string batchId in workload)
{
try
{
// I am using this ContinueWith pattern here to aggregate the Tasks
// which makes it more convenient to handle exceptions in one place
Task t = bll.GetIncomingBatchAsync(batchId).ContinueWith(
task => bll.SaveIncomingBatchAsync(task.Result),
TaskContinuationOptions.OnlyOnRanToCompletion);
saveBatchTasks.Add(t);
}
catch (Exception ex)
{
_logger.WriteError(ex, "ProcessWorkloadAsync error building saveBatchTasks!");
throw ex;
}
}
try
{
await Task.WhenAll(saveBatchTasks);
}
catch (Exception ex)
{
_logger.WriteError(ex, "ProcessWorkloadAsync error executing saveBatchTasks!");
throw ex;
}