Timers | Node.js v21.7.3 Documentation
https://nodejs.org/docs/latest-v21.x/api/timers.html • 58 KB fetched
Open original page
Timers | Node.js v21.7.3 Documentation
Node.js
* About this documentation
* Usage and example
* Assertion testing
* Asynchronous context tracking
* Async hooks
* Buffer
* C++ addons
* C/C++ addons with Node-API
* C++ embedder API
* Child processes
* Cluster
* Command-line options
* Console
* Corepack
* Crypto
* Debugger
* Deprecated APIs
* Diagnostics Channel
* DNS
* Domain
* Errors
* Events
* File system
* Globals
* HTTP
* HTTP/2
* HTTPS
* Inspector
* Internationalization
* Modules: CommonJS modules
* Modules: ECMAScript modules
* Modules: node:module API
* Modules: Packages
* Net
* OS
* Path
* Performance hooks
* Permissions
* Process
* Punycode
* Query strings
* Readline
* REPL
* Report
* Single executable applications
* Stream
* String decoder
* Test runner
* Timers
* TLS/SSL
* Trace events
* TTY
* UDP/datagram
* URL
* Utilities
* V8
* VM
* WASI
* Web Crypto API
* Web Streams API
* Worker threads
* Zlib
* Code repository and issue tracker
Node.js v21.7.3 documentation
* Node.js v21.7.3
*
► ▼
Table of contents
* Timers
* Class: Immediate
* immediate.hasRef()
* immediate.ref()
* immediate.unref()
* immediate[Symbol.dispose]()
* Class: Timeout
* timeout.close()
* timeout.hasRef()
* timeout.ref()
* timeout.refresh()
* timeout.unref()
* timeout[Symbol.toPrimitive]()
* timeout[Symbol.dispose]()
* Scheduling timers
* setImmediate(callback[, ...args])
* setInterval(callback[, delay[, ...args]])
* setTimeout(callback[, delay[, ...args]])
* Cancelling timers
* clearImmediate(immediate)
* clearInterval(timeout)
* clearTimeout(timeout)
* Timers Promises API
* timersPromises.setTimeout([delay[, value[, options]]])
* timersPromises.setImmediate([value[, options]])
* timersPromises.setInterval([delay[, value[, options]]])
* timersPromises.scheduler.wait(delay[, options])
* timersPromises.scheduler.yield()
*
► ▼
Index
* About this documentation
* Usage and example
*
Index
* Assertion testing
* Asynchronous context tracking
* Async hooks
* Buffer
* C++ addons
* C/C++ addons with Node-API
* C++ embedder API
* Child processes
* Cluster
* Command-line options
* Console
* Corepack
* Crypto
* Debugger
* Deprecated APIs
* Diagnostics Channel
* DNS
* Domain
* Errors
* Events
* File system
* Globals
* HTTP
* HTTP/2
* HTTPS
* Inspector
* Internationalization
* Modules: CommonJS modules
* Modules: ECMAScript modules
* Modules: node:module API
* Modules: Packages
* Net
* OS
* Path
* Performance hooks
* Permissions
* Process
* Punycode
* Query strings
* Readline
* REPL
* Report
* Single executable applications
* Stream
* String decoder
* Test runner
* Timers
* TLS/SSL
* Trace events
* TTY
* UDP/datagram
* URL
* Utilities
* V8
* VM
* WASI
* Web Crypto API
* Web Streams API
* Worker threads
* Zlib
* Code repository and issue tracker
*
► ▼
Other versions
* 21.x
* 20.x LTS
* 19.x
* 18.x LTS
* 17.x
* 16.x
* 15.x
* 14.x
* 13.x
* 12.x
* 11.x
* 10.x
* 9.x
* 8.x
* 7.x
* 6.x
* 5.x
* 4.x
* 0.12.x
* 0.10.x
*
► ▼
Options
*
View on single page
*
View as JSON
* Edit on GitHub
Table of contents
* Timers
* Class: Immediate
* immediate.hasRef()
* immediate.ref()
* immediate.unref()
* immediate[Symbol.dispose]()
* Class: Timeout
* timeout.close()
* timeout.hasRef()
* timeout.ref()
* timeout.refresh()
* timeout.unref()
* timeout[Symbol.toPrimitive]()
* timeout[Symbol.dispose]()
* Scheduling timers
* setImmediate(callback[, ...args])
* setInterval(callback[, delay[, ...args]])
* setTimeout(callback[, delay[, ...args]])
* Cancelling timers
* clearImmediate(immediate)
* clearInterval(timeout)
* clearTimeout(timeout)
* Timers Promises API
* timersPromises.setTimeout([delay[, value[, options]]])
* timersPromises.setImmediate([value[, options]])
* timersPromises.setInterval([delay[, value[, options]]])
* timersPromises.scheduler.wait(delay[, options])
* timersPromises.scheduler.yield()
Timers #
Stability: 2 - Stable
Source Code: lib/timers.js
The timer module exposes a global API for scheduling functions to
be called at some future period of time. Because the timer functions are
globals, there is no need to call require('node:timers') to use the API.
The timer functions within Node.js implement a similar API as the timers API
provided by Web Browsers but use a different internal implementation that is
built around the Node.js Event Loop .
Class: Immediate #
This object is created internally and is returned from setImmediate() . It
can be passed to clearImmediate() in order to cancel the scheduled
actions.
By default, when an immediate is scheduled, the Node.js event loop will continue
running as long as the immediate is active. The Immediate object returned by
setImmediate() exports both immediate.ref() and immediate.unref()
functions that can be used to control this default behavior.
immediate.hasRef() #
Added in: v11.0.0
* Returns: <boolean>
If true, the Immediate object will keep the Node.js event loop active.
immediate.ref() #
Added in: v9.7.0
* Returns: <Immediate> a reference to immediate
When called, requests that the Node.js event loop not exit so long as the
Immediate is active. Calling immediate.ref() multiple times will have no
effect.
By default, all Immediate objects are "ref'ed", making it normally unnecessary
to call immediate.ref() unless immediate.unref() had been called previously.
immediate.unref() #
Added in: v9.7.0
* Returns: <Immediate> a reference to immediate
When called, the active Immediate object will not require the Node.js event
loop to remain active. If there is no other activity keeping the event loop
running, the process may exit before the Immediate object's callback is
invoked. Calling immediate.unref() multiple times will have no effect.
immediate[Symbol.dispose]() #
Added in: v20.5.0, v18.18.0
Stability: 1 - Experimental
Cancels the immediate. This is similar to calling clearImmediate() .
Class: Timeout #
This object is created internally and is returned from setTimeout() and
setInterval() . It can be passed to either clearTimeout() or
clearInterval() in order to cancel the scheduled actions.
By default, when a timer is scheduled using either setTimeout() or
setInterval() , the Node.js event loop will continue running as long as the
timer is active. Each of the Timeout objects returned by these functions
export both timeout.ref() and timeout.unref() functions that can be used to
control this default behavior.
timeout.close() #
Added in: v0.9.1
Stability: 3 - Legacy: Use clearTimeout() instead.
* Returns: <Timeout> a reference to timeout
Cancels the timeout.
timeout.hasRef() #
Added in: v11.0.0
* Returns: <boolean>
If true, the Timeout object will keep the Node.js event loop active.
timeout.ref() #
Added in: v0.9.1
* Returns: <Timeout> a reference to timeout
When called, requests that the Node.js event loop not exit so long as the
Timeout is active. Calling timeout.ref() multiple times will have no effect.
By default, all Timeout objects are "ref'ed", making it normally unnecessary
to call timeout.ref() unless timeout.unref() had been called previously.
timeout.refresh() #
Added in: v10.2.0
* Returns: <Timeout> a reference to timeout
Sets the timer's start time to the current time, and reschedules the timer to
call its callback at the previously specified duration adjusted to the current
time. This is useful for refreshing a timer without allocating a new
JavaScript object.
Using this on a timer that has already called its callback will reactivate the
timer.
timeout.unref() #
Added in: v0.9.1
* Returns: <Timeout> a reference to timeout
When called, the active Timeout object will not require the Node.js event loop
to remain active. If there is no other activity keeping the event loop running,
the process may exit before the Timeout object's callback is invoked. Calling
timeout.unref() multiple times will have no effect.
timeout[Symbol.toPrimitive]() #
Added in: v14.9.0, v12.19.0
* Returns: <integer> a number that can be used to reference this timeout
Coerce a Timeout to a primitive. The primitive can be used to
clear the Timeout . The primitive can only be used in the
same thread where the timeout was created. Therefore, to use it
across worker_threads it must first be passed to the correct
thread. This allows enhanced compatibility with browser
setTimeout() and setInterval() implementations.
timeout[Symbol.dispose]() #
Added in: v20.5.0, v18.18.0
Stability: 1 - Experimental
Cancels the timeout.
Scheduling timers #
A timer in Node.js is an internal construct that calls a given function after
a certain period of time. When a timer's function is called varies depending on
which method was used to create the timer and what other work the Node.js
event loop is doing.
setImmediate(callback[, ...args]) #
History
Version Changes
v18.0.0
Passing an invalid callback to the callback argument now throws ERR_INVALID_ARG_TYPE instead of ERR_INVALID_CALLBACK .
v0.9.1
Added in: v0.9.1
* callback <Function> The function to call at the end of this turn of
the Node.js Event Loop
* ...args <any> Optional arguments to pass when the callback is called.
* Returns: <Immediate> for use with clearImmediate()
Schedules the "immediate" execution of the callback after I/O events'
callbacks.
When multiple calls to setImmediate() are made, the callback functions are
queued for execution in the order in which they are created. The entire callback
queue is processed every event loop iteration. If an immediate timer is queued
from inside an executing callback, that timer will not be triggered until the
next event loop iteration.
If callback is not a function, a TypeError will be thrown.
This method has a custom variant for promises that is available using
timersPromises.setImmediate() .
setInterval(callback[, delay[, ...args]]) #
History
Version Changes
v18.0.0
Passing an invalid callback to the callback argument now throws ERR_INVALID_ARG_TYPE instead of ERR_INVALID_CALLBACK .
v0.0.1
Added in: v0.0.1
* callback <Function> The function to call when the timer elapses.
* delay <number> The number of milliseconds to wait before calling the
callback . Default: 1 .
* ...args <any> Optional arguments to pass when the callback is called.
* Returns: <Timeout> for use with clearInterval()
Schedules repeated execution of callback every delay milliseconds.
When delay is larger than 2147483647 or less than 1 , the delay will be
set to 1 . Non-integer delays are truncated to an integer.
If callback is not a function, a TypeError will be thrown.
This method has a custom variant for promises that is available using
timersPromises.setInterval() .
setTimeout(callback[, delay[, ...args]]) #
History
Version Changes
v18.0.0
Passing an invalid callback to the callback argument now throws ERR_INVALID_ARG_TYPE instead of ERR_INVALID_CALLBACK .
v0.0.1
Added in: v0.0.1
* callback <Function> The function to call when the timer elapses.
* delay <number> The number of milliseconds to wait before calling the
callback . Default: 1 .
* ...args <any> Optional arguments to pass when the callback is called.
* Returns: <Timeout> for use with clearTimeout()
Schedules execution of a one-time callback after delay milliseconds.
The callback will likely not be invoked in precisely delay milliseconds.
Node.js makes no guarantees about the exact timing of when callbacks will fire,
nor of their ordering. The callback will be called as close as possible to the
time specified.
When delay is larger than 2147483647 or less than 1 , the delay
will be set to 1 . Non-integer delays are truncated to an integer.
If callback is not a function, a TypeError will be thrown.
This method has a custom variant for promises that is available using
timersPromises.setTimeout() .
Cancelling timers #
The setImmediate() , setInterval() , and setTimeout() methods
each return objects that represent the scheduled timers. These can be used to
cancel the timer and prevent it from triggering.
For the promisified variants of setImmediate() and setTimeout() ,
an AbortController may be used to cancel the timer. When canceled, the
returned Promises will be rejected with an 'AbortError' .
For setImmediate() :
const { setImmediate : setImmediatePromise } = require ( 'node:timers/promises' );
const ac = new AbortController ();
const signal = ac. signal ;
setImmediatePromise ( 'foobar' , { signal })
. then ( console . log )
. catch ( ( err ) => {
if (err. name === 'AbortError' )
console . error ( 'The immediate was aborted' );
});
ac. abort (); copy
For setTimeout() :
const { setTimeout : setTimeoutPromise } = require ( 'node:timers/promises' );
const ac = new AbortController ();
const signal = ac. signal ;
setTimeoutPromise( 1000 , 'foobar' , { signal })
. then ( console . log )
. catch ( ( err ) => {
if (err. name === 'AbortError' )
console . error ( 'The timeout was aborted' );
});
ac. abort (); copy
clearImmediate(immediate) #
Added in: v0.9.1
* immediate <Immediate> An Immediate object as returned by
setImmediate() .
Cancels an Immediate object created by setImmediate() .
clearInterval(timeout) #
Added in: v0.0.1
* timeout <Timeout> | <string> | <number> A Timeout object as returned by setInterval()
or the primitive of the Timeout object as a string or a number.
Cancels a Timeout object created by setInterval() .
clearTimeout(timeout) #
Added in: v0.0.1
* timeout <Timeout> | <string> | <number> A Timeout object as returned by setTimeout()
or the primitive of the Timeout object as a string or a number.
Cancels a Timeout object created by setTimeout() .
Timers Promises API #
History
Version Changes
v16.0.0
Graduated from experimental.
v15.0.0
Added in: v15.0.0
The timers/promises API provides an alternative set of timer functions
that return Promise objects. The API is accessible via
require('node:timers/promises') .
import {
setTimeout ,
setImmediate,
setInterval ,
} from 'timers/promises' ; const {
setTimeout ,
setImmediate,
setInterval ,
} = require ( 'node:timers/promises' ); copy
timersPromises.setTimeout([delay[, value[, options]]]) #
Added in: v15.0.0
* delay <number> The number of milliseconds to wait before fulfilling the
promise. Default: 1 .
* value <any> A value with which the promise is fulfilled.
* options <Object>
* ref <boolean> Set to false to indicate that the scheduled Timeout
should not require the Node.js event loop to remain active.
Default: true .
* signal <AbortSignal> An optional AbortSignal that can be used to
cancel the scheduled Timeout .
import {
setTimeout ,
} from 'timers/promises' ;
const res = await setTimeout ( 100 , 'result' );
console . log (res); // Prints 'result' const {
setTimeout ,
} = require ( 'node:timers/promises' );
setTimeout ( 100 , 'result' ). then ( ( res ) => {
console . log (res); // Prints 'result'
}); copy
timersPromises.setImmediate([value[, options]]) #
Added in: v15.0.0
* value <any> A value with which the promise is fulfilled.
* options <Object>
* ref <boolean> Set to false to indicate that the scheduled Immediate
should not require the Node.js event loop to remain active.
Default: true .
* signal <AbortSignal> An optional AbortSignal that can be used to
cancel the scheduled Immediate .
import {
setImmediate,
} from 'timers/promises' ;
const res = await setImmediate ( 'result' );
console . log (res); // Prints 'result' const {
setImmediate,
} = require ( 'node:timers/promises' );
setImmediate ( 'result' ). then ( ( res ) => {
console . log (res); // Prints 'result'
}); copy
timersPromises.setInterval([delay[, value[, options]]]) #
Added in: v15.9.0
Returns an async iterator that generates values in an interval of delay ms.
If ref is true , you need to call next() of async iterator explicitly
or implicitly to keep the event loop alive.
* delay <number> The number of milliseconds to wait between iterations.
Default: 1 .
* value <any> A value with which the iterator returns.
* options <Object>
* ref <boolean> Set to false to indicate that the scheduled Timeout
between iterations should not require the Node.js event loop to
remain active.
Default: true .
* signal <AbortSignal> An optional AbortSignal that can be used to
cancel the scheduled Timeout between operations.
import {
setInterval ,
} from 'timers/promises' ;
const interval = 100 ;
for await ( const startTime of setInterval (interval, Date . now ())) {
const now = Date . now ();
console . log (now);
if ((now - startTime) > 1000 )
break ;
}
console . log ( Date . now ()); const {
setInterval ,
} = require ( 'node:timers/promises' );
const interval = 100 ;
( async function ( ) {
for await ( const startTime of setInterval (interval, Date . now ())) {
const now = Date . now ();
console . log (now);
if ((now - startTime) > 1000 )
break ;
}
console . log ( Date . now ());
})(); copy
timersPromises.scheduler.wait(delay[, options]) #
Added in: v17.3.0, v16.14.0
Stability: 1 - Experimental
* delay <number> The number of milliseconds to wait before resolving the
promise.
* options <Object>
* signal <AbortSignal> An optional AbortSignal that can be used to
cancel waiting.
* Returns: <Promise>
An experimental API defined by the Scheduling APIs draft specification
being developed as a standard Web Platform API.
Calling timersPromises.scheduler.wait(delay, options) is roughly equivalent
to calling timersPromises.setTimeout(delay, undefined, options) except that
the ref option is not supported.
import { scheduler } from 'node:timers/promises' ;
await scheduler. wait ( 1000 ); // Wait one second before continuing copy
timersPromises.scheduler.yield() #
Added in: v17.3.0, v16.14.0
Stability: 1 - Experimental
* Returns: <Promise>
An experimental API defined by the Scheduling APIs draft specification
being developed as a standard Web Platform API.
Calling timersPromises.scheduler.yield() is eq
Links found on this page
- Node.js [direct]
- About this documentation [direct]
- Usage and example [direct]
- Assertion testing [direct]
- Asynchronous context tracking [direct]
- Async hooks [direct]
- Buffer [direct]
- C++ addons [direct]
- C/C++ addons with Node-API [direct]
- C++ embedder API [direct]
- Child processes [direct]
- Cluster [direct]
- Command-line options [direct]
- Console [direct]
- Corepack [direct]
- Crypto [direct]
- Debugger [direct]
- Deprecated APIs [direct]
- Diagnostics Channel [direct]
- DNS [direct]
- Domain [direct]
- Errors [direct]
- Events [direct]
- File system [direct]
- Globals [direct]
- HTTP [direct]
- HTTP/2 [direct]
- HTTPS [direct]
- Inspector [direct]
- Internationalization [direct]
- Modules: CommonJS modules [direct]
- Modules: ECMAScript modules [direct]
- Modules: node:module API [direct]
- Modules: Packages [direct]
- Net [direct]
- OS [direct]
- Path [direct]
- Performance hooks [direct]
- Permissions [direct]
- Process [direct]
- Punycode [direct]
- Query strings [direct]
- Readline [direct]
- REPL [direct]
- Report [direct]
- Single executable applications [direct]
- Stream [direct]
- String decoder [direct]
- Test runner [direct]
- Timers [direct]
- TLS/SSL [direct]
- Trace events [direct]
- TTY [direct]
- UDP/datagram [direct]
- URL [direct]
- Utilities [direct]
- V8 [direct]
- VM [direct]
- WASI [direct]
- Web Crypto API [direct]
- Web Streams API [direct]
- Worker threads [direct]
- Zlib [direct]
- Code repository and issue tracker [direct]
- Index [direct]
- 20.x LTS [direct]
- 19.x [direct]
- 18.x LTS [direct]
- 17.x [direct]
- 16.x [direct]
- 15.x [direct]
- 14.x [direct]
- 13.x [direct]
- 12.x [direct]
- 11.x [direct]
- 10.x [direct]
- 9.x [direct]
- 8.x [direct]
- 7.x [direct]
- 6.x [direct]