停止所有计时器运行

发布于 2024-08-01 18:27:52 字数 162 浏览 3 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(1

衣神在巴黎 2024-08-08 18:27:52

您可以将所有计时器注册到 TimersManager 类中,例如:

var t:Timer = new Timer()
TimersManager.getInstance().register(t);
...
TimersManager.getInstance().stopAll();

该类的实现应该非常简单。 只要确保对这些计时器保留弱引用即可。

You could register all your timers onto a TimersManager class, something like:

var t:Timer = new Timer()
TimersManager.getInstance().register(t);
...
TimersManager.getInstance().stopAll();

the implementation of that class should be pretty trivial. Just make sure you keep weak references to those timers.

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