该类BackgroundService包含以下代码:public virtual Task StartAsync(CancellationToken cancellationToken){ // Store the task we're executing _executingTask = ExecuteAsync(_stoppingCts.Token); // If the task is completed then return it, this will bubble cancellation and failure to the caller if (_executingTask.IsCompleted) { return _executingTask; } // Otherwise it's running return Task.CompletedTask;}我读过https://www.markopapic.com/csharp-under-the-hood-async-await/这让我假设所有代码ExecuteAsync到它的第一个(如果有的话)await ...,在if (_executingTask.IsCompleted)到达之前执行。因此,如果 的那部分发生任何异常ExecuteAsync,或者如果ExecuteAsync返回Task.CompletedTask,那将导致执行return _executingTask;。我对此的理解正确吗?
1 回答
慕田峪7331174
TA贡献1828条经验 获得超13个赞
因此,如果 ExecuteAsync 的那部分发生任何异常,或者如果 ExecuteAsync 返回 Task.CompletedTask,将导致执行 return _executingTask;
更一般地,如果ExecuteAsync
同步完成,则StartAsync
返回从 返回的任务ExecuteAsync
。
在这种特殊情况下(使用后台服务),我相信它旨在处理诸如前提条件检查之类的事情,这些事情通常在异步方法开始时同步完成。因此,如果后台服务同步确定它无法运行,StartAsync
则将返回一个错误的任务。
这种代码极为罕见,设计也值得商榷。例如,如果后台服务异步确定它不能运行,那么就没有通知。我认为删除整个块的行为会更加一致if (_executingTask.IsCompleted)
,或者将ExecuteAsync
抽象更改为单独InitializeAsync
的ExecuteAsync
部分。
- 1 回答
- 0 关注
- 94 浏览
添加回答
举报
0/150
提交
取消