implement TaskManager

This commit is contained in:
2017-06-17 16:56:33 +02:00
parent cf1b31d635
commit e1424ea0fb
28 changed files with 592 additions and 284 deletions

View File

@ -19,7 +19,7 @@ export class Task {
idle: boolean = true
private _state: string = 'ready'
constructor(optionsArg: {
constructor (optionsArg: {
taskFunction: ITaskFunction,
preTask?: Task,
afterTask?: Task,