Interface BatchEnqueueOutcome

    Result of enqueueBatch. inserted is the actual count that became jobs; skipped is items that conflicted on unique_key (they don't count toward the batch — the batch's total is inserted).

    interface BatchEnqueueOutcome {
        batchId: number;
        inserted: number;
        skipped: number;
    }
    Index

    Properties

    batchId: number
    inserted: number
    skipped: number