BackgroundWorker 的底层是如何工作的?
它如何知道何时在其 ProgressChanged 事件处理程序中编组对 UI 线程的调用?
我知道 SynchronizationContext.Current 可以做到这一点,但此属性仅在主 UI 线程中设置,如果在另一个后台线程上创建后台工作程序怎么办?
有人可以解释一下吗?
how does it knows when to/not to marshal call to the UI thread in it's progresschanged event handler?
I know SynchronizationContext.Current can do the trick, but this property is only set in the main UI thread, what if the backgroundworker is created on another background thread?
Can anybody kindly explain?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 Reflector,从 UI 线程调用的 BackgroundWorker.RunWorkAsync 使用 AsyncOperationManager.CreateOperation。
此方法访问 SynchronizationContext.Current(如果不存在则创建一个新的)。
所以SynchronizationContext是在BGW启动时保存的。
According to the Reflector, BackgroundWorker.RunWorkAsync which is called from the UI-thread uses AsyncOperationManager.CreateOperation.
This method accesses SynchronizationContext.Current (or creates a new if none exists).
So the SynchronizationContext is saved when starting the BGW.