Method summary
- __init__(self, millisecs, callable, *args, **kw_args)
- IsRunning(self)
- Notify(self)
- Start(self, millisecs = None)
- Stop(self)
Methods
- __init__(self, millisecs, callable, *args, **kw_args)
Initialize instance to invoke the given callable with given arguments and keyword args after every millisecs (milliseconds).
- IsRunning(self)
Emulate wx.Timer.
- Notify(self)
Call the given callable. Exceptions raised in the callable are caught. If StopIteration is raised the timer stops. If other exceptions are encountered the timer is stopped and the exception re-raised. Note that the name of this method is part of the API because some code expects this to be a wx.Timer sub-class.
- Start(self, millisecs = None)
Emulate wx.Timer.
- Stop(self)
Emulate wx.Timer.