File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -49,9 +49,10 @@ request the timer hold the program open. If the timer is already `ref`d calling
4949
5050## setImmediate(callback, [ arg] , [ ...] )
5151
52- To schedule the "immediate" execution of ` callback ` . Returns an ` immediateId `
53- for possible use with ` clearImmediate() ` . Optionally you can also pass
54- arguments to the callback.
52+ To schedule the "immediate" execution of ` callback ` after I/O events
53+ callbacks and before ` setTimeout ` and ` setInterval ` . Returns an
54+ ` immediateId ` for possible use with ` clearImmediate() ` . Optionally you
55+ can also pass arguments to the callback.
5556
5657Immediates are queued in the order created, and are popped off the queue once
5758per loop iteration. This is different from ` process.nextTick ` which will
You can’t perform that action at this time.
0 commit comments