Anchorage API reference
    Preparing search index...

    Interface SweepExpiredRunDeadlinesOptions

    interface SweepExpiredRunDeadlinesOptions {
        cursor?: RunDeadlineCursor;
        limit?: number;
        now?: () => number;
        tablePrefix?: string;
        advanceCursor?(cursor: RunDeadlineCursor): Promise<void>;
        transition(candidate: RunDeadlineCandidate, now: number): Promise<void>;
    }
    Index

    Properties

    Last selected row from the prior pass.

    limit?: number

    Bounded rows per duty pass. Default 100.

    now?: () => number
    tablePrefix?: string

    Must satisfy createD1Storage's max-39 tablePrefix contract.

    Methods