I'm learning event loop of nodejs.
I have some of question after reading in document.
Each phase has a FIFO queue of callbacks to execute. While each phase is special in its own way, generally, when the event loop enters a given phase, it will perform any operations specific to that phase, then execute callbacks in that phase's queue until the queue has been exhausted or the maximum number of callbacks has executed.
What is meaning of "each phase is special in its own way"?
Is it means running mechanism, structure or resposibility?