busy-wait.js: rename a method argument
authorJérôme Benoit <jerome.benoit@sap.com>
Mon, 7 Jun 2021 18:18:06 +0000 (20:18 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Mon, 7 Jun 2021 18:18:06 +0000 (20:18 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
busy-wait.js

index 9ff5a000f72463fcb600c45644e8f95deb4e05dd..5ea20aad653f21df72c89d403b11a57506db2a0b 100644 (file)
@@ -15,30 +15,30 @@ function dummyTimeoutBusyWait (timeoutMs) {
 
 /**
  * @param timeoutMs
- * @param delayMs
+ * @param intervalMs
  */
-async function divideAndConquerTimeoutBusyWait (timeoutMs, delayMs = 200) {
-  const tries = Math.round(timeoutMs / delayMs)
+async function divideAndConquerTimeoutBusyWait (timeoutMs, intervalMs = 200) {
+  const tries = Math.round(timeoutMs / intervalMs)
   let count = 0
   do {
     count++
-    await sleep(delayMs)
+    await sleep(intervalMs)
   } while (count <= tries)
 }
 
 /**
  * @param timeoutMs
- * @param delayMs
+ * @param intervalMs
  */
-function setIntervalTimeoutBusyWait (timeoutMs, delayMs = 200) {
-  const tries = Math.round(timeoutMs / delayMs)
+function setIntervalTimeoutBusyWait (timeoutMs, intervalMs = 200) {
+  const tries = Math.round(timeoutMs / intervalMs)
   let count = 0
   const triesSetInterval = setInterval(() => {
     count++
     if (count === tries) {
       clearInterval(triesSetInterval)
     }
-  }, delayMs)
+  }, intervalMs)
 }
 
 suite