learning-nodejs
learning-nodejs copied to clipboard
There is no run_nextTick() in uv_run() function. But, How can nextTick callback function is processed between two phases ?
There are uv__run_timers() and uv__run_pending() in uv_run(). But, there isn't run_next_tick().
How can my callback function which I registered with process.nextTick( {callback} ) is processed between two phases( uv__run_timers() & uv__run_pending() ) ?