阻塞直到事件发生
在网络工作者中,我正在触发 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您需要将脚本分成两部分,并在消息返回时触发第二部分。这就是 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.