Interface TaskProcessEndEvent

An event signaling the end of a process execution triggered through a task

interface TaskProcessEndEvent {
    execution: TaskExecution;
    exitCode: number;
}

Properties

Properties

execution: TaskExecution

The task execution for which the process got started.

exitCode: number

The process's exit code.