本文介绍了TaskPool任务项同步运行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在RxUI(http://www.reactiveui.net)中有一个错误,似乎Observable.Start(()=> someFunc(),Scheduler.TaskPool)最终同步运行 - 任务只是在UI线程中运行。
https://github.com/xpaulbettsx/ReactiveUI/issues/30
任何想法为什么使用TaskPool最终仍会在同一个线程上运行?
解决方案
I have a bug in RxUI (http://www.reactiveui.net), where it seems that Observable.Start(() => someFunc(), Scheduler.TaskPool), ends up running synchronously - the task simply runs in the UI thread.
https://github.com/xpaulbettsx/ReactiveUI/issues/30
Any ideas why using TaskPool would end up still running on the same thread?
解决方案
这篇关于TaskPool任务项同步运行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!