forge.timers
    Preparing search index...

    Interface ITimerEventData

    What an event carries besides its timer.

    interface ITimerEventData {
        dropped?: number;
        dropReason?: string;
        failReason?: string;
        overdueBy?: number;
        restored?: number;
    }
    Index
    dropped?: number

    How many it threw away instead.

    dropReason?: string

    Why a timer was thrown away without running.

    failReason?: string

    Why the storage could not be opened.

    overdueBy?: number

    How late a timer was when startup reached it, in ms.

    restored?: number

    How many stored timers startup picked back up.