blob: 6784d5b35743bb2f643fe9be5aa339a769720ff8 (
plain) (
blame)
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
|
import * as _ from 'lodash';
export const intervalUtils = {
setAsyncExcludingInterval(
fn: () => Promise<void>,
intervalMs: number,
onError: (err: Error) => void,
): NodeJS.Timer {
let isLocked = false;
const intervalId = setInterval(async () => {
if (isLocked) {
return;
} else {
isLocked = true;
try {
await fn();
} catch (err) {
onError(err);
}
isLocked = false;
}
}, intervalMs);
return intervalId;
},
clearAsyncExcludingInterval(intervalId: NodeJS.Timer): void {
clearInterval(intervalId);
},
setInterval(fn: () => void, intervalMs: number, onError: (err: Error) => void): NodeJS.Timer {
const intervalId = setInterval(() => {
try {
fn();
} catch (err) {
onError(err);
}
}, intervalMs);
return intervalId;
},
clearInterval(intervalId: NodeJS.Timer): void {
clearInterval(intervalId);
},
};
|