Closed xaka closed 9 years ago
It's kind of bad practice to call a callback right away within the same event loop iteration as it might cause synchronization issues, etc., so usually it's deferred by either using process.nextTick or setTimeout.
:+1:
It's kind of bad practice to call a callback right away within the same event loop iteration as it might cause synchronization issues, etc., so usually it's deferred by either using process.nextTick or setTimeout.