阻塞直到事件发生

发布于 2024-09-16 10:47:22 字数 92 浏览 2 评论 0原文

在网络工作者中,我正在触发 postMessage() 并需要等待结果才能继续执行。是否有阻塞直到 onMessage 事件发生,而不是忙于等待加上类似彼得森算法的东西?

In a web worker, I'm firing off a postMessage() and need to wait for the result before continuing execution. Is there anyway of blocking until the onMessage event occurs, short of busy waiting plus something like Peterson's Algorithm?

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

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

发布评论

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

评论(1

﹏半生如梦愿梦如真 2024-09-23 10:47:22

听起来您需要将脚本分成两部分,并在消息返回时触发第二部分。这就是 JavaScript 世界中任何异步调用的工作方式。

Sounds like you need to break up your script into two parts and fire the second part when the message comes back. That is how any asynchronous call works in the JavaScript world.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文