ixfx
    Preparing search index...

    Type Alias HasCompletion

    HasCompletion: {
        get runState(): HasCompletionRunStates;
        get startCount(): number;
        get startCountTotal(): number;
    }

    Type declaration

    • getrunState():HasCompletionRunStates

      Gets the current run state idle: not yet started or completed with no future run scheduled scheduled: waiting to run running: currently executing its callback

    • getstartCount():number

      Returns the number of times the scheduled function has been executed.

      This number will be reset in some conditions. For example continuously resets it when the loop stops.

      Use startCountTotal to track total number.

    • getstartCountTotal():number

      Total number of times scheduled function has been executed.