Member Junction
    Preparing search index...

    Interface RemoteOpProgress

    A single progress update emitted by a LongRunning Remote Operation while it executes. The shape is intentionally generic so any operation can stream meaningful progress.

    interface RemoteOpProgress {
        Handle?: string;
        Message?: string;
        OperationKey: string;
        Payload?: unknown;
        Processed?: number;
        Status?: string;
        Total?: number;
    }
    Index

    Properties

    Handle?: string

    Opaque handle for the run this progress belongs to (e.g. a ProcessRunID).

    Message?: string

    Human-readable progress message.

    OperationKey: string

    Stable key of the operation emitting the progress (e.g. RecordProcess.RunNow).

    Payload?: unknown

    Arbitrary structured progress payload for richer UIs.

    Processed?: number

    Items processed so far, when the operation reports countable progress.

    Status?: string

    Coarse status label (e.g. Running, Paused). Operation-defined.

    Total?: number

    Total items to process, when known.