Source code for pyface.timer.timer

# (C) Copyright 2005-2023 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!
"""
Event-loop based timers that perform actions periodically.

Note that if a timer goes out of scope without a reference to being saved,
there is nothing keeping the underlying toolkit timer alive and it will be
garbage collected, meaning that the timer will stop firing (or indeed, may
never fire).
"""

from pyface.toolkit import toolkit_object
from pyface.timer.i_timer import MCallbackTimer, MEventTimer

PyfaceTimer = toolkit_object("timer.timer:PyfaceTimer")


[docs]class EventTimer(MEventTimer, PyfaceTimer): pass
[docs]class CallbackTimer(MCallbackTimer, PyfaceTimer): pass
[docs]class Timer(CallbackTimer): """ Subclass of CallbackTimer that matches the old API """ def __init__(self, millisecs, callable, *args, **kwargs): """ Initialize and start the timer. Initialize instance to invoke the given `callable` with given arguments and keyword args after every `millisecs` (milliseconds). """ interval = millisecs / 1000.0 super().__init__( interval=interval, callback=callable, args=args, kwargs=kwargs ) self.start()
[docs] def Notify(self): """ Alias for `perform` to match old API. """ self.perform()
[docs] def Start(self, millisecs=None): """ Alias for `start` to match old API. """ if millisecs is not None: self.interval = millisecs / 1000.0 self.start()
[docs] def Stop(self): """ Alias for `stop` to match old API. """ self.stop()
[docs] def IsRunning(self): """ Alias for is_running property to match old API. """ return self._active