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

    Interface CronBudget

    what a firing is allowed to spend

    interface CronBudget {
        maxMs: number;
        maxRows: number;
        maxUnits: number;
    }
    Index
    maxMs: number

    wall-clock bound on the loop; a guard, not a measurement

    maxRows: number

    rows written per firing, checked AFTER each unit rather than predicted before it

    maxUnits: number

    units per firing; a unit is one hook, one queue batch, or one SQL pass