EN
JavaScript - own wait-for-result method
7 points
In this short article, we would like to show how in JavaScript write a function that waits for the result only indicated amount of the time, breaking waiting if some exceptions occur incessantly longer than it is permitted.
That kind of logic can be useful when we wait for some remote operation that shouldn't be monitored longer if a network connection lost.
Practical example:
xxxxxxxxxx
1
const sleep = async (milliseconds) => {
2
return new Promise(resolve => setTimeout(resolve, milliseconds));
3
};
4
5
// Waits for result from iterationCallback function.
6
const wait = async (
7
waitingTimeout,
8
throwingTimeout,
9
iterationSleep,
10
iterationCallback
11
) => {
12
let errorBarrier = Number.POSITIVE_INFINITY;
13
const startTime = 0.001 * Date.now();
14
while (true) {
15
await sleep(1000 * iterationSleep);
16
const currentTime = 0.001 * Date.now();
17
if (currentTime >= errorBarrier) {
18
throw new Error('Exceptions occured inside iteration callback.');
19
}
20
const waitingDuration = currentTime - startTime;
21
if (waitingDuration >= waitingTimeout) {
22
return undefined;
23
}
24
try {
25
const iterationResult = await iterationCallback(waitingDuration);
26
if (iterationResult !== undefined) {
27
return iterationResult;
28
}
29
errorBarrier = Number.POSITIVE_INFINITY;
30
} catch (error) {
31
if (Number.isFinite(errorBarrier)) {
32
continue;
33
}
34
errorBarrier = currentTime + throwingTimeout;
35
}
36
}
37
};
38
39
// Checks if in wait() function timeout occured.
40
const isTimeout = (result) => result === undefined;
41
42
// Usage example:
43
44
const trueCallback = async (timeElapsed) => {
45
console.log(`trueCallback called in ${timeElapsed}s`);
46
return true;
47
};
48
const falseCallback = async (timeElapsed) => {
49
console.log(`falseCallback called in ${timeElapsed}s`);
50
return false;
51
};
52
const stringCallback = async (timeElapsed) => {
53
console.log(`stringCallback called in ${timeElapsed}s`);
54
return 'Some string result ...';
55
};
56
const voidCallback = async (timeElapsed) => {
57
console.log(`voidCallback called in ${timeElapsed}s`);
58
// without any result (similar to: return undefined)
59
};
60
const exceptionCallback = async (timeElapsed) => {
61
console.log(`exceptionCallback called in ${timeElapsed}s`);
62
// some operation that throws exception:
63
throw new Error('Some error occured ...');
64
};
65
66
const printResult = (result) => {
67
console.log(` wait() result: ${result}, isTimeout: ${isTimeout(result)}\n\n`);
68
};
69
70
;(async () => {
71
// waiting is stopped imidiatelly bacouse of true result
72
const result1 = await wait(5, 2, 1, trueCallback);
73
printResult(result1);
74
75
// waiting is stopped imidiatelly bacouse of false result
76
const result2 = await wait(5, 2, 1, falseCallback);
77
printResult(result2);
78
79
// waiting is stopped imidiatelly bacouse of string result
80
const result3 = await wait(5, 2, 1, stringCallback);
81
printResult(result3);
82
83
// waiting is stopped after 5s bacouse of undefined result
84
const result4 = await wait(5, 2, 1, voidCallback);
85
printResult(result4);
86
87
try {
88
// waiting is stopped after 2s bacouse of throwed exception
89
const result5 = await wait(5, 2, 1, exceptionCallback);
90
printResult(result5);
91
} catch(e) {
92
console.log(` wait() exception: ${e.message}\n\n`);
93
}
94
95
// other cases
96
97
// exceptions are ignored because of Number.POSITIVE_INFINITY usage
98
const result6 = await wait(5, Number.POSITIVE_INFINITY, 1, exceptionCallback);
99
printResult(result6);
100
})();