-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTask.ts
96 lines (82 loc) · 1.72 KB
/
Task.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*!
* @author electricessence / https://github.com/electricessence/
* @license MIT
*/
import {Func} from '@tsdotnet/common-interfaces';
import ArgumentNullException from '@tsdotnet/exceptions/dist/ArgumentNullException';
import {Lazy} from '@tsdotnet/lazy';
import TaskHandlerBase from './TaskHandlerBase';
import TaskState from './TaskState';
import TaskStatus from './TaskStatus';
/**
* A simplified synchronous (but deferrable) version of Task<T>
* Asynchronous operations should use Promise<T>.
*/
export class Task<T>
extends TaskHandlerBase
{
private readonly _result: Lazy<T>;
constructor (valueFactory: Func<T>)
{
super();
if(!valueFactory) throw new ArgumentNullException('valueFactory');
this._result = new Lazy(valueFactory);
}
get state (): TaskState<T>
{
return this.getState();
}
get result (): T
{
this.throwIfDisposed();
this.runSynchronously();
return this.getResult();
}
get error (): any
{
this.throwIfDisposed();
return this._result.error;
}
start (defer?: number): void
{
if(this.getStatus()==TaskStatus.Created)
{
super.start(defer);
}
}
runSynchronously (): void
{
if(this.getStatus()==TaskStatus.Created)
{
super.runSynchronously();
}
}
protected _onExecute (): void
{
this._result.getValue();
}
protected getResult (): T
{
return this._result.value; // This will detect any potential recursion.
}
protected getState (): TaskState<T>
{
const r = this._result;
return r && {
status: this.getStatus(),
result: r.isValueCreated ? r.value : void 0,
error: r.error
};
}
protected _onDispose (): void
{
super._onDispose();
const r = this._result;
if(r)
{
(this as any)._result = null;
r.dispose();
}
}
}
export default Task;