AutoResetEvent在发出信号之前触发
本文关键字:AutoResetEvent 信号 | 更新日期: 2023-09-27 18:25:13
我有两个类似于下面的方法。在MainThreadDoWork
方法中,无论OtherThreadWork
方法中的autoResetEvent.Set()如何,循环都将完成执行。知道这个AutoResetEvent实例中发生了什么吗?
AutoResetEvent autoResetEvent = new AutoResetEvent(true);
private int count = 10;
private void MainThreadDoWork(object sender, EventArgs e)
{
for (int i = 0; i < count; i++)
{
if (autoResetEvent.WaitOne())
{
Console.WriteLine(i.ToString());
}
}
}
private void OtherThreadWork()
{
autoResetEvent.Set();
//DoSomething();
}
编辑
以下是实际的OtherThreadWork的样子。
private void OtherThreadWork()
{
if (textbox.InvokeRequired)
{
this.textbox.BeginInvoke(new MethodInvoker(delegate() { OtherThreadWork(); }));
autoResetEvent.Set();
}
else
{
// Some other code
}
}
传递给AutoResetEvent
构造函数的布尔参数指定事件是否在有信号的状态下创建。
您正在创建它,它已经处于有信号的状态,所以您的第一个WaitOne
不会阻塞。
尝试:
AutoResetEvent autoResetEvent = new AutoResetEvent( false );