非阻塞 UI WPF/Silverlight
设计非阻塞 UI 时需要牢记哪些事项? IObservable 是为此目的吗?
What are the things to be kept in mind while designing a non-blocking UI. Is IObservable meant for that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用异步方法时,协程还有一个非常有趣的想法。
您可以在这里阅读相关内容:
There is also very interesting idea of coroutines when working with async methods.
You can read abut it here:
我认为最通用的规则是:所有持久的操作(例如数据库或服务调用)都应该异步运行或在单独的线程或后台工作程序中运行。
I think most general rule would be: All long-lasting operations, like database or service calls should be run either asynchronouly or in separate thread or backgrounworker.