@ascentbv/ts-common - v1.0.123
    Preparing search index...

    Interface NamedIntervalStats

    Statistics for a named interval. Returned by TimerUtil.getNamedIntervalStats().

    interface NamedIntervalStats {
        id: number;
        delayTicks: number;
        elapsedTimes: number[];
        lastTime: number;
        totalCalls: number;
        averageTime: number;
        maxTime: number;
    }
    Index

    Properties

    id: number

    The internal ID returned by system.runInterval.

    delayTicks: number

    Delay between executions, in ticks.

    elapsedTimes: number[]

    Rolling history of elapsed execution times (ms) for recent runs.

    lastTime: number

    The duration (ms) of the most recent execution.

    totalCalls: number

    Total number of times the interval has been executed.

    averageTime: number

    Average execution time (ms) from the recorded elapsedTimes.

    maxTime: number

    Maximum execution time (ms) from the recorded elapsedTimes.