Lines Matching refs:Timeout
63 ## Class: `Timeout`
71 timer is active. Each of the `Timeout` objects returned by these functions
82 If true, the `Timeout` object will keep the Node.js event loop active.
89 * Returns: {Timeout} a reference to `timeout`
92 `Timeout` is active. Calling `timeout.ref()` multiple times will have no effect.
94 By default, all `Timeout` objects are "ref'ed", making it normally unnecessary
102 * Returns: {Timeout} a reference to `timeout`
117 * Returns: {Timeout} a reference to `timeout`
119 When called, the active `Timeout` object will not require the Node.js event loop
121 the process may exit before the `Timeout` object's callback is invoked. Calling
135 Coerce a `Timeout` to a primitive. The primitive can be used to
136 clear the `Timeout`. The primitive can only be used in the
200 * Returns: {Timeout} for use with [`clearInterval()`][]
218 * Returns: {Timeout} for use with [`clearTimeout()`][]
308 * `timeout` {Timeout|string|number} A `Timeout` object as returned by [`setInterval()`][]
309 or the [primitive][] of the `Timeout` object as a string or a number.
311 Cancels a `Timeout` object created by [`setInterval()`][].
318 * `timeout` {Timeout|string|number} A `Timeout` object as returned by [`setTimeout()`][]
319 or the [primitive][] of the `Timeout` object as a string or a number.
321 Cancels a `Timeout` object created by [`setTimeout()`][].