Interface TaskProcessStartEvent

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

interface TaskProcessStartEvent {
    execution: TaskExecution;
    processId: number;
}

Properties

Properties

execution: TaskExecution

The task execution for which the process got started.

processId: number

The underlying process id.