停止所有计时器运行
我有一个 Flex 应用程序,其中有多个计时器出于各种原因运行不同的时间。 我希望能够在用户超过指定时间时停止所有计时器的运行,但不想使用timer.stop()单独停止计时器;
有没有办法全局停止所有计时器或查找并迭代所有正在运行的计时器并停止它们?
I have a flex app that has several timers running for various amounts of time and for various reasons. I'd like to be able to stop all timers running if the user goes over a specified amount of time, but don't want to individually stop the timers using timer.stop();
Is there a way to stop all timers globally or find and iterate over all timers running and stop them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将所有计时器注册到 TimersManager 类中,例如:
该类的实现应该非常简单。 只要确保对这些计时器保留弱引用即可。
You could register all your timers onto a TimersManager class, something like:
the implementation of that class should be pretty trivial. Just make sure you keep weak references to those timers.