刷新 Flex VideoDisplay 请求队列

发布于 2024-08-26 20:48:22 字数 89 浏览 9 评论 0原文

当调用 play()、pause() 或eek() 等命令而 videoDisplay 无响应时,它会被放入队列中,如何刷新此队列,以便最新的命令是唯一处理的命令?

When a command like play(), pause(), or seek() is called while the videoDisplay is unresponsive it gets put on a queue, how do I flush this queue so the most recent command is the only command processed?

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

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

发布评论

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

评论(1

呆橘 2024-09-02 20:48:22

不要尝试刷新队列,而是检查 stateResponsive 是否为 true。如果为 true,则将命令发送到 videoDisplay,如果为 false,则存储命令,直到 videoDisplay 的 stateResponsive 为 true,然后发送命令。

Instead of trying to flush the queue, check to see if the stateResponsive is true. If true, send the command to the videoDisplay, if false, store the command until the videoDisplay's stateResponsive is true and then send the command.

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