-
Notifications
You must be signed in to change notification settings - Fork 0
/
Interval Cancellation
39 lines (38 loc) · 1.12 KB
/
Interval Cancellation
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
function cancellable(fn: Function, args: any[], t: number): Function {
fn(...args);
const id = setInterval(() => {
fn(...args);
}, t)
const cancelFn = () => clearInterval(id);
return cancelFn;
};
/**
* const result = []
*
* const fn = (x) => x * 2
* const args = [4], t = 35, cancelT = 190
*
* const start = performance.now()
*
* const log = (...argsArr) => {
* const diff = Math.floor(performance.now() - start)
* result.push({"time": diff, "returned": fn(...argsArr)})
* }
*
* const cancel = cancellable(log, args, t);
*
* setTimeout(() => {
* cancel()
* }, cancelT)
*
* setTimeout(() => {
* console.log(result) // [
* // {"time":0,"returned":8},
* // {"time":35,"returned":8},
* // {"time":70,"returned":8},
* // {"time":105,"returned":8},
* // {"time":140,"returned":8},
* // {"time":175,"returned":8}
* // ]
* }, cancelT + t + 15)
*/