Member Junction
    Preparing search index...

    Type Alias TaskGraphCancelResult

    What a cancellation actually managed to do.

    type TaskGraphCancelResult = {
        Cancelled: boolean;
        ErrorMessage?: string;
        Success: boolean;
        UncancelledTaskNames: string[];
    }
    Index

    Properties

    Cancelled: boolean

    True only when every non-terminal task in the graph — and its descendants — is Cancelled.

    ErrorMessage?: string
    Success: boolean

    False when anything the caller asked to stop is still running.

    UncancelledTaskNames: string[]

    Named so the caller can say which parts of the workflow are still going.