Interface TaskInfo

Runtime information about Task.

interface TaskInfo {
    config: TaskConfiguration;
    ctx?: string;
    taskId: number;
    terminalId?: number;
    [key: string]: any;
}

Hierarchy (view full)

Indexable

[key: string]: any

Additional properties specific for a particular Task Runner.

Properties

task config used for launching a task

ctx?: string

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

taskId: number

internal unique task id

terminalId?: number

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