Open In App

Difference between process.nextTick() and setImmediate() Methods

Improve
Improve
Like Article
Like
Save
Share
Report

To understand the difference between process.nextTick() and setImmediate() methods, we first need to understand the working of Node.js Event Loop

What is Node.js Event Loop? Due to the fact that JavaScript is single-threaded i.e. it performs only a single process at a time, so it is the Event Loop that allows Node.js to perform non-blocking I/O operations. 

Working of Event Loop? At the start of a JavaScript program, an event loop is initialized. There are several operations that execute in an event loop. Below is the sequence in which different they are executed in a single iteration of the event loop. These operations are processed in a queue.

timers–>pending callbacks–>idle,prepare–>connections(poll,data,etc)–>check–>close callbacks

Understanding process.nextTick() method: Whenever a new queue of operations is initialized we can think of it as a new tick. The process.nextTick() method adds the callback function to the start of the next event queue. It is to be noted that, at the start of the program process.nextTick() method is called for the first time before the event loop is processed. 

Syntax:

process.nextTick(callback);

Understanding setImmdeiate() method: Whenever we call setImmediate() method, it’s callback function is placed in the check phase of the next event queue. There is slight detail to be noted here that setImmediate() method is called in the poll phase and it’s callback functions are invoked in the check phase.

 Syntax:

setImmediate(callback);

Example: 

javascript




setImmediate(function A() {
    console.log("1st immediate");
});
 
setImmediate(function B() {
    console.log("2nd immediate");
});
 
process.nextTick(function C() {
    console.log("1st process");
});
 
process.nextTick(function D() {
    console.log("2nd process");
});
 
// First event queue ends here
console.log("program started");


For the above program, event queues are initialized in the following manner:

  1. In the first event queue only ‘program started is printed’.
  2. Then second event queue is started and function C i.e. callback of process.nextTick() method is placed at the start of the event queue. C is executed and the queue ends.
  3. Then previous event queue ends and third event queue is initialized with callback D. Then callback function A of setImmdeiate() method is placed in the followed by B. Now, the third event queue looks like this,
D A B

Now functions D, A, B are executed in the order they are present in the queue. 

Output: 

Let us see the differences in a tabular form -: 

  process.nextTick()  setImmediate() 
1.  process.nextTick() fires immediately on the same phase setImmediate() fires on the following iteration or ‘tick’ of the event loop
2.  Its benefit is that it has no time bound to take a callback. setImmediate() method is only processed on the check handler phase of the event loop
3.  process.nextTick() function is specific to the Node.js Event Loop It is generally found in the Timers module
4. 

Its syntax is -:

process.nextTick(callback); 

Its syntax is -:

setImmediate(callback); 

5.  It has a benefit that it has the potential to cause I/O starvation Its return value is a unique timer identifier that can be used in another function call.

Last Updated : 21 Feb, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads