可以在没有 ContextBoundObject 类的情况下使用带有 ExitContext 标志的 WaitHandle.WaitOne 吗?
MSDN 文档表明可能还有其他使用 ExitContext 标志的方法。请参阅 WaitHandle.WaitOne() 什么除了使用 ContextBoundObject 继承类之外,还有其他方法可以输入非默认上下文吗? (我无法在我的应用程序中使用 ContextBoundObject)
MSDN documentation suggests that there may be other ways of using ExitContext flag. See WaitHandle.WaitOne() What other ways are there to enter a non-default context outside of using a ContextBoundObject inherited class? (I can't use ContextBoundObject in my application)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
线索就在这句话里。
因此,基本上,您可以从没有子类
ContextBoundObject
的类中调用WaitOne
,也不会对ContextBoundObject
存在任何先入为主的观念涉及您的代码,但有问题的线程可能位于非默认上下文中,因为在调用堆栈中的某个位置,ContextBoundObject
类的实例方法可能正在您不知情的情况下运行。除了这个唯一的异常之外,没有其他方法可以进入非默认同步上下文。
有一篇关于线程的非常好的文章,其中包含与同步上下文相关的其他信息,可以在 此处找到。
The clue is in this sentence.
So basically you could call
WaitOne
from within a class that does not subclassContextBoundObject
nor would you have any preconceived notion that aContextBoundObject
was in any way involved with your code and yet the thread in question could be in a nondefault context because somewhere way up in the call stack an instance method of aContextBoundObject
class could be running unbeknown to you.Outside of that lone exception there are no other ways of entering into a nondefault synchronization context.
There is a pretty good article on threading with additional information related to synchronization contexts which can be found here.