Not user callable! :return: A simple counter that makes each container element unique :rtype:
(cls, timer_id)
| 9732 | |
| 9733 | @classmethod |
| 9734 | def stop_timer_with_id(cls, timer_id): |
| 9735 | """ |
| 9736 | Not user callable! |
| 9737 | :return: A simple counter that makes each container element unique |
| 9738 | :rtype: |
| 9739 | """ |
| 9740 | timer = cls.active_timers.get(timer_id, None) |
| 9741 | if timer is not None: |
| 9742 | timer.stop() |
| 9743 | |
| 9744 | @classmethod |
| 9745 | def stop_all_timers_for_window(cls, window): |
no test coverage detected