等待直到调用代表

发布于 2024-10-17 04:32:21 字数 307 浏览 3 评论 0原文

我有一个带有 StartProcessing() 方法的异步类,该方法在完成处理时引发 int ResultReady() 事件。 StartProcessing() 只需要很少的时间。

我想同步调用这个类。我的伪代码应该类似于:

  1. Call StartProcessing()

  2. 等待/睡眠直到结果准备好

  3. 返回结果

哪种设计模式最适合这个?你能指点我一个代码示例吗?

I have an asynchronous class with a StartProcessing() method, that raises an int ResultReady() event when it has finished processing. StartProcessing() takes very little time.

I want to call this class synchronously. My pseudo-code should be something like:

  1. Call StartProcessing()

  2. Wait/sleep until result is ready

  3. Return result

What design pattern is best for this? Can you please point me to a code example?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

朕就是辣么酷 2024-10-24 04:32:21

一种简单的方法是使用 ManualResetEvent。调用设置来自事件处理程序,以及 WaitOne (或来自等待线程的超时过载)。请注意,这不能在 STA 线程上完成,因此您不能在 WinForms 线程(应该始终是 STA)内执行此操作 - 但无论如何您都不应该在 UI 线程内等待。

像这样的东西:

var async = new AsyncClass();
var manualEvent = new ManualResetEvent();
async.ResultReady += args => manualEvent.Set();
async.StartProcessing();
manualEvent.WaitOne();

One simple way of doing this is with a ManualResetEvent which the event handler and the waiting code both have access to. Call Set from the event handler, and WaitOne (or an overload with a timeout) from the waiting thread. Note that this can't be done on an STA thread, so you can't do it within a WinForms thread (which should always be STA) - but you shouldn't be waiting within a UI thread anyway.

Something like this:

var async = new AsyncClass();
var manualEvent = new ManualResetEvent();
async.ResultReady += args => manualEvent.Set();
async.StartProcessing();
manualEvent.WaitOne();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文