Add events to listen on process start / end for task executions.

This commit is contained in:
Dirk Baeumer
2018-05-14 21:55:28 +02:00
parent 82a8a52cf3
commit 0505ae0749
9 changed files with 225 additions and 24 deletions

View File

@@ -88,6 +88,17 @@ export interface TaskExecutionDTO {
task: TaskDTO;
}
export interface TaskProcessStartedDTO {
id: string;
processId: number;
}
export interface TaskProcessEndedDTO {
id: string;
exitCode: number;
}
export interface TaskFilterDTO {
version?: string;
type?: string;