-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefer.js
69 lines (69 loc) · 1.84 KB
/
defer.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
"use strict";
/*!
* @author electricessence / https://github.com/electricessence/
* @license MIT
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.interval = exports.defer = void 0;
class DeferBase {
dispose() {
this.cancel();
}
}
class Defer extends DeferBase {
constructor(task, delay = 0, payload) {
super();
if (!(delay > 0))
delay = 0; // covers undefined and null.
this._id = setTimeout(Defer.handler, delay, task, this, payload);
}
// Use a static function here to avoid recreating a new function every time.
static handler(task, d, payload) {
d.cancel();
task(payload);
}
cancel() {
const id = this._id;
if (id) {
clearTimeout(id);
this._id = null;
return true;
}
return false;
}
}
class DeferInterval extends DeferBase {
constructor(task, interval, _remaining = Infinity) {
super();
this._remaining = _remaining;
if (interval == null)
throw '\'interval\' must be a valid number.';
if (interval < 0)
throw '\'interval\' cannot be negative.';
this._id = setInterval(DeferInterval.handler, interval, task, this);
}
static handler(task, d) {
if (!(--d._remaining))
d.cancel();
task();
}
cancel() {
const id = this._id;
if (id) {
clearInterval(id);
this._id = null;
return true;
}
return false;
}
}
function defer(task, delay, payload) {
return new Defer(task, delay, payload);
}
exports.defer = defer;
function interval(task, interval, count = Infinity) {
return new DeferInterval(task, interval, count);
}
exports.interval = interval;
exports.default = defer;
//# sourceMappingURL=defer.js.map