Event Loops Immediate Calls #JS 빠른 노트.

애플리케이션에서 어떤 이벤트가 언제 호출되는지 알면 되므로 무슨 일이 일어나고 있는지 고민할 필요가 없습니다.

아래 시퀀스를 기억하십시오.
1) process.nextTick();

process.nextTick(functionBlockToExecute.); //Function here will be called first no matter it's place where it is declared but only thing is matter that it should be declared along with below other functions than it will execute first


2) 약속 => 해결.

new Promise((resolve, reject) => {
    resolve('bar'); // Promise resolution will be second in stack to be callled.
  });



3) 약속 => 그럼.

new Promise((resolve, reject) => {
    resolve('bar');
  }).then((resolve) => {
    console.log(resolve);
    process.nextTick(zoo); //Here when a promise resiolved then will be called.
  });



4) setImmediate(함수 호출)

 setImmediate(baz); //However setImmediate execute as soon as possible it still executed after above 3 scenarios.


무엇보다도 즉각적인 호출은 여러 개의 즉시 함수 호출로 작업할 때 서로 비교된다는 점을 기억하십시오.

좋은 웹페이지 즐겨찾기