当不等待异步方法并立即评估 IsCompleted 时,涵盖了哪些场景?

该类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;


我对此的理解正确吗?


森栏
浏览 95回答 1
1回答

慕田峪7331174

因此,如果 ExecuteAsync 的那部分发生任何异常,或者如果 ExecuteAsync 返回 Task.CompletedTask,将导致执行 return _executingTask;更一般地,如果ExecuteAsync同步完成,则StartAsync返回从 返回的任务ExecuteAsync。在这种特殊情况下(使用后台服务),我相信它旨在处理诸如前提条件检查之类的事情,这些事情通常在异步方法开始时同步完成。因此,如果后台服务同步确定它无法运行,StartAsync则将返回一个错误的任务。这种代码极为罕见,设计也值得商榷。例如,如果后台服务异步确定它不能运行,那么就没有通知。我认为删除整个块的行为会更加一致if (_executingTask.IsCompleted),或者将ExecuteAsync抽象更改为单独InitializeAsync的ExecuteAsync部分。
打开App,查看更多内容
随时随地看视频慕课网APP