A pipeline job event to be processed by the execution plan.

interface JobCompletedEvent {
    agentShuttingDown?: boolean;
    jobId?: string;
    name?: string;
    requestId?: number;
    result?: TaskResult;
}

Hierarchy (View Summary)

Properties

agentShuttingDown?: boolean

Indicates whether the agent is in the process of shutting down.

jobId?: string

The ID of the pipeline job affected by the event.

name?: string

The name of the pipeline job event.

requestId?: number

The ID of the request.

result?: TaskResult

The result of the request.