Represents the result of cancelling a long operation task.

interface ICancelTaskResult {
    id?: string;
    result?: boolean;
    taskType?: TaskType;
}

Implemented by

Properties

Properties

id?: string

The ID of the task which has been subject to cancellation.

result?: boolean

Indicates if the request to cancel the task has been received.

taskType?: TaskType

The type of the task which has been subject to cancellation.