DecoratorCallback
Decorator to call a method periodically with a timer
This executes repeatedly. The decorated function is passed a cancel function that can be called to stop the timer.
let counter=0;
@Timer(1000)
myTimerMethod(cancel: TimerCancelMethod) {
console.log("Timer method called once per second");
if (counter++ > 5) cancel();
Generated using TypeDoc
the interval in milliseconds to call the method