Member Junction
    Preparing search index...

    Result returned by RecordSetProcessor.Process() — a run summary plus the persisted run ID.

    interface ProcessRunResult {
        EndTime?: Date;
        Error: number;
        ErrorMessage?: string;
        Processed: number;
        ProcessRunID?: string;
        Skipped: number;
        StartTime?: Date;
        Status: ProcessRunStatusValue;
        Success: number;
        Total: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    EndTime?: Date

    When the run ended.

    Error: number

    Records that failed.

    ErrorMessage?: string

    Run-level error message when Status is Failed.

    Processed: number

    Records handed to the processor so far.

    ProcessRunID?: string

    ID of the persisted MJ: Process Runs row, when a persisting tracker was used.

    Skipped: number

    Records that were skipped.

    StartTime?: Date

    When the run started.

    Terminal or current run status.

    Success: number

    Records that succeeded.

    Total: number

    Known total record count, or null.