- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
任何人都可以向我解释这两种异步方法之间的区别吗?
方法一
public async Task<List<Thumbnail>> GetAllThumbnailsAsync()
{
return await Task.Factory.StartNew(() =>
{
var imageUris = GetAllDirectoriesWithImageAsync(CommandBaseUri).Result;
return imageUris.Select(GetThumbnail).OrderByDescending(t => t.ImageDateTime).ToList();
});
}
方法二
public async Task<List<Thumbnail>> GetAllThumbnailsAsync()
{
var imageUris = await GetAllDirectoriesWithImageAsync(CommandBaseUri);
return imageUris.Select(GetThumbnail).OrderByDescending(t => t.ImageDateTime).ToList();
}
根据我的理解,这两种方法都应该返回给调用者并且不会阻塞 UI 线程,但在这种情况下,只有方法 A 按预期工作,而方法 B 会阻塞我的 UI。
我相信一定有一些我在使用 async/await 时可能误解了的基本概念。
谁能教教我?
最佳答案
方法 A 基本上是在一个单独的任务中执行一切,这可能会在一个新线程中结束。当您等待结果任务时,您不会阻止任何东西。
方法 B 首先调用 GetAllDirectoriesWithImageAsync
,然后等待结果。这意味着当异步操作正在处理时,您不会阻塞 UI 线程 - 但默认情况下,当您等待任务时,这意味着延续将在 UI 线程中运行。所以 imageUris.Select(...).OrderByDescending(...).ToList()
将在 UI 线程中运行,我怀疑 这就是导致的部分用户界面中的问题。
现在您可以在 GetAllThumbnailsAsync
的第一行末尾调用 .ConfigureAwait(false)
,以表明您不需要需要在 UI 线程上执行第二部分 - 但这不能保证您不会在 UI 线程上执行第二部分。相反,在我看来,您真的想要一种获取缩略图的异步方式。然后你可以这样做:
public async Task<List<Thumbnail>> GetAllThumbnailsAsync()
{
var imageUris = await GetAllDirectoriesWithImageAsync(CommandBaseUri)
.ConfigureAwait(false);
var thumbnailTasks = imageUris.Select(GetThumbnailAsync).ToList();
var thumbnails = await Task.WhenAll(thumbnailTasks).ConfigureAwait(false);
// I'm assuming there will be sufficiently few thumbnails here
// that sorting them on the UI thread wouldn't be a problem, in
// the unlikely event that we're *really* still on the UI thread by
// this point...
return thumbnails.OrderByDescending(t => t.ImageDateTime).ToList();
}
请注意,我假设所有异步方法都是合理编写的,例如GetAllDirectoriesWithImageAsync
在返回任务之前不会执行大量同步工作。
关于c# - 为什么带有 await 关键字的异步方法仍然阻塞主线程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43841542/
我有一个 forEach循环处理数组中的数据。在该循环中间的某个地方,我必须等待 DOM 元素的更改,获取该更改,处理它,然后才能继续处理数组。 我希望在控制台中看到这个: Preparing "aa
给定以下方法: public async Task DoSomethingAsync() { // do some work await OpenSomeFileAsync();
尝试在 .exports 中运行一个异步函数,获取 Promise,然后在下一个异步函数中使用结果,但由于某种原因,无论等待如何,第二个函数都会在第一个函数之前执行。 销售.js = const sq
谁能解释为什么 c# 5 中的异步函数需要至少有 1 个等待?我找不到明确的理由/解释。 所谓必需,是指当异步函数内部没有任何 await 调用时编译器会发出警告,但不会抛出编译错误。 来自 this
我想用 Mocha 测试异步代码. 我跟着这个教程testing-promises-with-mocha .最后,它说最好的方法是 async/await。 以下是我的代码,我打算将 setTimeo
这个问题在这里已经有了答案: How do yield and await implement flow of control in .NET? (5 个答案) How is resumption
我想在 trait 中编写异步函数,但是因为 async fn in traits 还不被支持,我试图找到等效的方法接口(interface)。这是我在 Rust nightly (2019-01-0
在 node.js 中,我有一个数据库事务,我想在 then 回调中调用一个 async 方法,但我收到错误消息 关键字“等待”已保留。 这是异步 saveImage 函数: const saveIm
我正在包装 AspNet.Identity。但有些事情让我对 TPL 感到困惑。 第一个例子: public virtual async Task RemovePasswordAsync(st
我有三个 showDialog 示例。我认为 _showAlert1 是正确的,但它使用 2 个函数来实现它。 _showAlert2 也有效,但我认为它不正确,因为我认为 showDialog 是异
我正在编写一个应该尽可能快地执行所有异步函数的函数,但是,它们中只有 5 个可以同时运行。 我想使用 Promise.race 来实现,所以实现不是最好的。问题是代码执行不会在 await 处停止。我
在 Scala 和其他编程语言中,可以使用 Futures 和 Await。 (在实际代码中,会使用例如 zip+map 而不是 Await) def b1() = Future { 1 } def
这个问题在这里已经有了答案: At the end of an async method, should I return or await? (2 个回答) 8年前关闭。 我做了一些阅读,并认为我已
我知道这是一个非常开放的问题,我深表歉意。 我可以看到 Await.ready返回 Awaitable.type而 Await.result返回 T但我仍然混淆他们。 两者有什么区别? 一个是阻塞的,
为什么等待者(GetAwaiter - 使类可等待)是结构而不是类。使用类有什么坏处吗? public struct ConfiguredTaskAwaiter : ICriticalNotifyCo
这个问题在这里已经有了答案: Why doesn't Scala's Future have a .get / get(maxDuration) method, forcing us to resor
async/await 链中的所有函数都必须使用 async/await 关键字吗? async function one() { return await fetch(.....); } asy
点击组件的按钮时将执行以下方法。 async onClickButton() { await this.shoppingCartService.add(this.selectedOffer);
它似乎被记录在案的唯一地方是 this issue thread和 the actual specification .但是,删除的原因并没有在我能找到的任何地方发布。 新的推荐方式似乎是await
为什么使用 await 需要将其外部函数声明为 async? 例如,为什么这个 mongoose 语句需要它所在的函数来返回一个 promise? async function middleware(
我是一名优秀的程序员,十分优秀!