我有自定义浏览器类,它能够根据浏览的页面状态触发很多事件。现在我需要使用我的浏览器在这个网页上执行一些操作,但它们必须按顺序运行,每个操作都需要前一个操作的数据。实现这一点的最简洁方法是创建一个同步方法等待浏览器完成其工作。我是这样设计的:
public incomplete class MyClass {
// (...) lots of stuff comes here, it's a web browser :)
public bool MySyncMethod(object data) {
bool success = false;
bool wait = true;
MyEventHandler = new EventHandler((o, e) => {
data = MyEventProvidedData; // belive me, it's threre when it fired
success = true; // let's assume it always succeed
wait = false; // now we can move on to the rest of our long chain
});
// (...) here I have some more event handlers which can end my method...
MyAsyncMethod(data); // so it started and will fire MyEventHandler soon
while (wait) System.Threading.Thread.Sleep(100);
return success;
}
}
但这里似乎有些不对劲。如果我使用线程,我只需放置 myThread.Join() 而不是我的 while 循环,它会等待我的线程完成。是否类似于 Thread.Join() 可以与控件触发的事件一起使用?有什么东西可以代替while循环吗?这是实现我的目标的更清洁的方式吗?上面的代码在真实的应用程序中工作,但我认为它不是最优的。
我在这里不使用线程有一个很好的理由——线程和 ActiveX 控件之间的所有通信都必须是线程安全的,而这并非易事。是的,我试过了:)这段代码很难调试,所以我决定重写它。