gpt4 book ai didi

c# - 链接异步方法

转载 作者:行者123 更新时间:2023-11-30 13:35:50 25 4
gpt4 key购买 nike

我试图将我创建的一些异步方法链接在一起,我相信我对它的工作原理存在一些根本性的误解

这是我的代码的表示形式:

public async Task<bool> LoadFoo()
{
return await Foo.ReadAsync("bar").ContinueWith((bar) =>
{
Foo.ReadAsync("baz").ContinueWith((baz) =>
{
Foo.ReadAsync("qux").ContinueWith((qux) =>
{
return true;
});

return true;
});

return true;
});
}

public void LoadEverything()
{
LoadFoo().ContinueWith((blah) =>
{
OtherLoadMethod();
});
}

现在我期待 LoadEverything() 被调用时 LoadFoo ("bar", "baz"and "qux") 中的所有 ReadAsync 方法) 将运行并完成,在它们全部完成后,LoadEverything 中的 .ContinueWith 将运行,以便 OtherLoadMethod() 将'执行直到“bar”、“baz”和“qux”ReadAsync 方法完成。

我实际看到的是 LoadFoo 被调用,然后 OtherLoadMethod 开始运行,然后在 LoadFoo 中完成( “qux”ReadAsyncContinueWith

有人可以帮我澄清一下这里的误解吗?为什么 OtherLoadMethod 的执行不等到 ReadAsync("qux") 完成并返回 true?

最佳答案

Why wouldn't execution of OtherLoadMethod wait until ReadAsync("qux") finishes and returns true?

因为这就是await作品。您注册的延续只是:延续。它们不是在当前方法中同步执行的。您是在告诉框架当前任务完成时,应该执行延续。 Task ContinueWith() 返回的对象允许您观察完成是否发生以及何时发生。甚至不需要返回 Task对象,如果 ContinueWith()方法被阻塞,直到继续执行。

同样,Task<bool>由您返回 LoadFoo() method 表示方法的整体完成,包括await...ContinueWith()你回来了。该方法在延续完成之前返回,如果调用者需要等待延续完成,则他们应该使用返回的任务。

综上所述,我不明白你为什么要使用 ContinueWith()首先。您显然可以访问 await ,这是处理延续的现代惯用方式。恕我直言,您的代码应该看起来像这样(不清楚为什么要返回 Task<bool> 而不是 Task ,因为返回值永远都是 true ,但我假设您可以自己弄清楚这部分):

public async Task<bool> LoadFoo()
{
await Foo.ReadAsync("bar");
await Foo.ReadAsync("baz");
await Foo.ReadAsync("qux");

return true;
}

public async Task LoadEverything()
{
await LoadFoo();
await OtherLoadMethod();
}

关于c# - 链接异步方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45666057/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com