在异步方法结束时,我应该返回还是等待

本文关键字:返回 等待 我应该 异步方法 结束 | 更新日期: 2023-09-27 18:25:15

在返回异步方法的Task结束时,如果我调用另一个异步方法,我可以await它的任务,也可以return它的任务。每种情况的后果是什么?

    Task FooAsync()
    {
        return BazAsync();  // Option A
    }
    async Task BarAsync()
    {
        await BazAsync(); // Option B
    }

在异步方法结束时,我应该返回还是等待

如果方法本身被声明为async,则不能返回任务,因此这将不起作用,例如:

async Task BarAsync()
{
    return BazAsync(); // Invalid!
}

这将需要返回类型Task<Task>

如果你的方法是做少量的工作,然后只调用一个异步方法,那么你的第一个选项是好的,这意味着少了一个任务。您应该知道,在synchronous方法中抛出的任何异常都将同步传递——事实上,我更喜欢这样处理参数验证。

这也是实现重载的常见模式,例如通过取消令牌。

只需注意,如果您需要更改以等待其他内容,则需要将其设置为异步方法。例如:

// Version 1:
Task BarAsync()
{
    // No need to gronkle yet...
    return BazAsync();
}
// Oops, for version 2 I need to do some more work...
async Task BarAsync()
{
    int gronkle = await GronkleAsync();
    // Do something with gronkle
    // Now we have to await BazAsync as we're now in an async method
    await BazAsync();
}

查看下面的链接:http://msdn.microsoft.com/en-us/library/vstudio/hh191443.aspx

async Task<int> TaskOfTResult_MethodAsync()
{
    int hours;
    // . . .
    // The body of the method should contain one or more await expressions.
    // Return statement specifies an integer result.
    return hours;
}
    // Calls to TaskOfTResult_MethodAsync from another async method.
private async void CallTaskTButton_Click(object sender, RoutedEventArgs e)
{
    Task<int> returnedTaskTResult = TaskOfTResult_MethodAsync();
    int intResult = await returnedTaskTResult;
    // or, in a single statement
    //int intResult = await TaskOfTResult_MethodAsync();
}



// Signature specifies Task
async Task Task_MethodAsync()
{
    // . . .
    // The body of the method should contain one or more await expressions.
    // The method has no return statement.  
}
    // Calls to Task_MethodAsync from another async method.
private async void CallTaskButton_Click(object sender, RoutedEventArgs e)
{
    Task returnedTask = Task_MethodAsync();
    await returnedTask;
    // or, in a single statement
    //await Task_MethodAsync();
}