Interface IOperationBulkProgress

Interface to gather more information about the process of performed bulk operation.

interface IOperationBulkProgress {
    all: number;
    executing: number;
    failed: number;
    pending: number;
    successful: number;
}

Properties

all: number

Count of processed operations

executing: number

Count of executing operations

failed: number

Count of failed operations

pending: number

Count of pending operations

successful: number

Count of successful operations