Private
Readonly
onInvoked on timer invoke.
Private
Optional
Readonly
onInvoked when timer starts.
Private
Optional
Readonly
onInvoked when timer stops.
Private
Readonly
rateTimer rate in milliseconds.
Private
Optional
referenceReference of the active timer.
Private
Readonly
repeatIs this a repeating timer?
Private
createGets the method used to create the timer (interval or timeout).
The timer creation method.
Determines whether the timer has started.
A boolean indicating if the timer has started.
Determines whether the timer has stopped.
A boolean indicating if the timer has stopped.
Triggers the callback function associated with the timer. This method can be called manually to simulate the timer invocation.
Starts the timer.
If the timer is already started, it will be stopped first and then restarted.
Stops the timer if it is currently running. If the timer is a repeating timer, it will be stopped using clearInterval. If the timer is a non-repeating timer, it will be stopped using clearTimeout.
Represents a timer that can be started, stopped, and repeated at a specified rate.