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

    Interface AnonymousIntervalOptions

    Options for creating an anonymous interval. Anonymous intervals cannot be cleared by name or tracked for stats.

    interface AnonymousIntervalOptions {
        profile?: string | boolean;
        name?: undefined;
        beginImmediately?: boolean;
        force?: undefined;
    }

    Hierarchy (View Summary)

    Index

    Properties

    profile?: string | boolean

    Enable profiling for the timer.

    • true → Profile using the interval's name or a default label.
    • string → Profile using the provided custom label.
    • false or undefined → Disable profiling.
    name?: undefined

    Must not be provided for anonymous intervals.

    beginImmediately?: boolean

    If true, the callback will run once immediately before scheduling begins.

    force?: undefined

    Not applicable for anonymous intervals.