Function Timer

  • Type Parameters

    Parameters

    • intervalMS: number

      the interval in milliseconds to call the method

    Returns (<This, Value>(target, context) => void)

    DecoratorCallback

      • <This, Value>(target, context): void
      • Type Parameters

        Parameters

        • target: ((this, cancelFn) => void)
        • context: ClassMethodDecoratorContext<This, ((this, cancel) => void)>

        Returns void

    Description

    Decorator to call a method periodically with a timer

    Note

    This executes repeatedly. The decorated function is passed a cancel function that can be called to stop the timer.

    Export

    Example

    let counter=0;
    @Timer(1000)
    myTimerMethod(cancel: TimerCancelMethod) {
    console.log("Timer method called once per second");
    if (counter++ > 5) cancel();

Generated using TypeDoc