标签: c# asp.net-core blazor
我想并行执行一些任务,一旦完成,我想在主UI线程上执行回调。这可能吗?如果是这样,怎么样?
答案 0 :(得分:3)
目前尚未支持多线程,它仍在考虑之中,但支持使用Async await进行并行执行(就像在C#中一样)。
Async await
https://github.com/aspnet/Blazor/issues/139
https://github.com/aspnet/Blazor/issues/140