Interface ProcessTaskInfo

Runtime information about Task.

interface ProcessTaskInfo {
    command?: string;
    config: TaskConfiguration;
    ctx?: string;
    processId?: number;
    taskId: number;
    terminalId?: number;
}

Hierarchy (view full)

Properties

command?: string

process task command

task config used for launching a task

ctx?: string

context that was passed as part of task creation, if any

processId?: number

process id. Defined if task is run as a process

taskId: number

internal unique task id

terminalId?: number

terminal id. Defined if task is run as a terminal process