• Home
  • Raw
  • Download

Lines Matching full:timeout

90           "textRaw": "Class: `Timeout`",
92 "name": "Timeout",
93 …ve. Each of the <code>Timeout</code> objects returned by these functions\nexport both <code>timeou…
96 "textRaw": "`timeout.hasRef()`",
115 … "desc": "<p>If true, the <code>Timeout</code> object will keep the Node.js event loop active.</p>"
118 "textRaw": "`timeout.ref()`",
130 "textRaw": "Returns: {Timeout} a reference to `timeout`",
132 "type": "Timeout",
133 "desc": "a reference to `timeout`"
138Timeout</code> is active. Calling <code>timeout.ref()</code> multiple times will have no effect.</…
141 "textRaw": "`timeout.refresh()`",
153 "textRaw": "Returns: {Timeout} a reference to `timeout`",
155 "type": "Timeout",
156 "desc": "a reference to `timeout`"
164 "textRaw": "`timeout.unref()`",
176 "textRaw": "Returns: {Timeout} a reference to `timeout`",
178 "type": "Timeout",
179 "desc": "a reference to `timeout`"
184Timeout</code> object will not require the Node.js event loop\nto remain active. If there is no ot…
187 "textRaw": "`timeout[Symbol.toPrimitive]()`",
199 … "textRaw": "Returns: {integer} a number that can be used to reference this `timeout`",
202 "desc": "a number that can be used to reference this `timeout`"
207Timeout</code> to a primitive. The primitive can be used to\nclear the <code>Timeout</code>. The p…
267 "textRaw": "Returns: {Timeout} for use with [`clearInterval()`][]",
269 "type": "Timeout",
309 "textRaw": "Returns: {Timeout} for use with [`clearTimeout()`][]",
311 "type": "Timeout",
345 …h((err) => {\n if (err.name === 'AbortError')\n console.log('The timeout was aborted');\n …
372 "textRaw": "`clearInterval(timeout)`",
385 …"textRaw": "`timeout` {Timeout|string|number} A `Timeout` object as returned by [`setInterval()`][…
386 "name": "timeout",
387 "type": "Timeout|string|number",
388 …"desc": "A `Timeout` object as returned by [`setInterval()`][] or the [primitive][] of the `Timeou…
393 …"desc": "<p>Cancels a <code>Timeout</code> object created by <a href=\"#timers_setinterval_callbac…
396 "textRaw": "`clearTimeout(timeout)`",
409 …"textRaw": "`timeout` {Timeout|string|number} A `Timeout` object as returned by [`setTimeout()`][]…
410 "name": "timeout",
411 "type": "Timeout|string|number",
412 …"desc": "A `Timeout` object as returned by [`setTimeout()`][] or the [primitive][] of the `Timeout
417 …"desc": "<p>Cancels a <code>Timeout</code> object created by <a href=\"#timers_settimeout_callback…