刷新 Flex VideoDisplay 请求队列
当调用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要尝试刷新队列,而是检查 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.