-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathAsyncHelpers.js
45 lines (38 loc) · 932 Bytes
/
AsyncHelpers.js
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
'use strict';
function sleep(milliseconds) {
return new Promise(resolve => setTimeout(resolve, milliseconds));
}
class AsyncWaitCondition {
#resolve;
#reject;
#promise;
constructor() {
this.#promise = new Promise((resolve, reject) => {
this.#resolve = resolve;
this.#reject = reject;
});
}
release() {
console.assert(this.#reject !== undefined, "AsyncWaitCondition already rejected.");
if (this.#resolve && this.#reject) {
this.#resolve();
this.#resolve = undefined;
}
}
abort() {
console.assert(this.#resolve !== undefined, "AsyncWaitCondition already resolved.");
if (this.#reject && this.#reject) {
this.#reject();
this.#reject = undefined;
}
}
get promise() {
return this.#promise;
}
reset() {
this.#promise = new Promise((resolve, reject) => {
this.#resolve = resolve;
this.#reject = reject;
});
}
}