drupflare/worker - v1.0.0
    Preparing search index...

    Interface CronDriveResult

    interface CronDriveResult {
        cursor: StoredCursor;
        last: CronStep | null;
        more: boolean;
        ran: string[];
        rowsWritten: number;
        stoppedBy: "rows" | "php" | "ms" | "units" | "ring";
        units: number;
    }
    Index
    cursor: StoredCursor

    the cursor to persist; the caller owns storage

    last: CronStep | null

    the last step's raw result, so a failure is visible rather than swallowed

    more: boolean

    whether the ring has more to do, so the caller can re-arm

    ran: string[]

    every unit id run, in order, for the audit trail an operator reads

    rowsWritten: number
    stoppedBy: "rows" | "php" | "ms" | "units" | "ring"

    which budget ended the firing, or ring when the round simply finished

    units: number

    units actually run this firing