Saxonberg Server API
    Preparing search index...

    Interface ClockHandle

    Live handle onto a registered schedule. nextFireAt and fireCount read through to the underlying record, so they stay accurate as the schedule fires / advances; nextFireAt is null once the schedule is cancelled or expired.

    interface ClockHandle {
        fireCount: number;
        id: string;
        nextFireAt: Quantity<"s"> | null;
        cancel(): void;
    }
    Index

    Properties

    Methods

    Properties

    fireCount: number
    id: string
    nextFireAt: Quantity<"s"> | null

    Methods