Member Junction
    Preparing search index...

    Type Alias TaskGraphSubmitResult

    type TaskGraphSubmitResult = {
        ErrorMessage?: string;
        ParentTaskID?: string;
        Success: boolean;
        TaskIDMap?: Map<string, string>;
    }
    Index

    Properties

    ErrorMessage?: string
    ParentTaskID?: string

    The parent task representing the whole graph — the handle for status, cancel and retry.

    Success: boolean
    TaskIDMap?: Map<string, string>

    tempId -> persisted Task.ID, for callers that need to correlate back to their spec.