Member Junction
    Preparing search index...

    Progress snapshot emitted to a run's onProgress callback.

    interface ProgressInfo {
        CurrentRecordID?: string;
        Error: number;
        Processed: number;
        Skipped: number;
        Success: number;
        Total: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    CurrentRecordID?: string

    The record currently being processed, when available.

    Error: number

    Records that failed.

    Processed: number

    Records handed to the processor so far.

    Skipped: number

    Records that were skipped.

    Success: number

    Records that succeeded.

    Total: number

    Known total record count, or null when the total is not known up-front.