Interface PacingStatus

interface PacingStatus {
    chunks: number;
    complete: boolean;
    errorMessage?: string;
    iterations: number[];
    success: boolean;
}

Properties

chunks: number

Number of chunks pacing was split into.

complete: boolean

Indicates if the pacing is complete.

errorMessage?: string

Error message if the pacing was not successful.

iterations: number[]

An array of iteration totals for each chunk.

success: boolean

Indicates if the pacing was successful.