Event Loop in Node.js

preview_player
Показать описание
What is the Event Loop?

Phases Overview
timers: this phase executes callbacks scheduled by setTimeout() and setInterval().
pending callbacks: executes I/O callbacks deferred to the next loop iteration.
idle, prepare: only used internally.
poll: retrieve new I/O events; execute I/O related callbacks (almost all with the exception of close callbacks, the ones scheduled by timers, and setImmediate()); the node will block here when appropriate.
check: setImmediate() callbacks are invoked here.
Hey everyone, Sid here back again with another video!

I train professional software engineers that companies love to hire. I cover a wide range of subjects like programming, what's latest in tech, new frameworks, open-source products etc. I keep my interest in a wide area of tech like Javascript, Python, PHP, AWS, etc.


#EventLoop #NodeJS
Рекомендации по теме
Комментарии
Автор

Brother can you make one video with nodejs to run two while loop run at parallel. Thank you for advance

bahadurkoyakoya