“同步域”的状态技术
为什么我会找到有关同步域的讨论 几乎不存在于任何地方(书籍、文章等)。是因为它被认为是一种过时的技术,只是为了向后兼容而维护吗?或者它的应用是如此稀有以至于没有人关心它们?
我之前听说过 SynchronizationAttribute,它是同步域不可或缺的一部分,但似乎也没有人过多讨论该属性。
Why do I find discussion of synchronization domains to be almost absent anywhere (books, articles, etc). Is it because it is considered an outmoded technique that is maintained merely for backward compatability? Or are its applications so rarified that no one bothers with them?
I had heard of the SynchronizationAttribute before, which is integral to synch domains, but no one seems to discuss that attribute much either.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
放置在 System.Runtime.Remoting 中,它看起来更像是实现细节或遗留 COM 技术。当您查看命名空间文档时,会有这样的印象之所以得到加强,是因为它讨论了 COM 激活上下文。大多数应用程序在单个进程中执行,并且从不关心 COM 对象的远程执行,所以我想对于大多数人来说这无关紧要。
Being placed in System.Runtime.Remoting it looks more like an implementation detail or a legacy COM technique. When you look at the namespace documentation this impression is reinforced because it talks about COM activation contexts. Most applications execute in a single process and never bother with remote execution of COM objects, so I guess for most people it's just not relevant.