Cancel an interval execution
Cancel an interval execution
The handle returned by setInterval
Cancel a timeout execution
Cancel a timeout execution
The handle returned by setTimeout
Schedule handler
for repeated execution every interval
milliseconds.
Schedule handler
for repeated execution every interval
milliseconds.
the function to call after each interval
duration in milliseconds between executions
A handle that can be used to cancel the interval by passing it to clearInterval.
Schedule handler
for execution in interval
milliseconds.
Schedule handler
for execution in interval
milliseconds.
the function to call after interval
has passed
duration in milliseconds to wait
A handle that can be used to cancel the timeout by passing it to clearTimeout.
Non-Standard Raw JavaScript timer methods.
The methods on this object expose the raw JavaScript methods for timers. In general it is more advisable to use the methods directly defined on timers as they are more Scala-like.