section: event-async, add link about event loop

This commit is contained in:
Lellansin 2017-07-27 23:24:39 +08:00
parent a12604a214
commit c4ba53cbf2
2 changed files with 2 additions and 2 deletions

View File

@ -225,7 +225,7 @@ The writter think there are two kinds of 'asynchronous' in Node.js: `hard async
└───────────────────────┘
```
To know more about event loop, Timers, nextTickwe recommend the Node.js documentation and this article: [The Node.js Event Loop, Timers, and process.nextTick()](https://nodejs.org/en/docs/guides/event-loop-timers-and-nexttick/).
To know more about event loop, Timers, nextTick, we recommend the Node.js documentation, [*The Node.js Event Loop, Timers, and process.nextTick()*](https://nodejs.org/en/docs/guides/event-loop-timers-and-nexttick/) and [*Tasks, microtasks, queues and schedules*](https://jakearchibald.com/2015/tasks-microtasks-queues-and-schedules/).
## Paraller/Concurrent

View File

@ -208,7 +208,7 @@ function sleep(ms) {
└───────────────────────┘
```
关于事件循环, Timers 以及 nextTick 的关系详见官方文档 The Node.js Event Loop, Timers, and process.nextTick(): [英文](https://nodejs.org/en/docs/guides/event-loop-timers-and-nexttick/) [论坛中文讨论](https://cnodejs.org/topic/57d68794cb6f605d360105bf)
关于事件循环, Timers 以及 nextTick 的关系详见官方文档 The Node.js Event Loop, Timers, and process.nextTick(): [英文](https://nodejs.org/en/docs/guides/event-loop-timers-and-nexttick/) [论坛中文讨论](https://cnodejs.org/topic/57d68794cb6f605d360105bf) 以及 [Tasks, microtasks, queues and schedules](https://jakearchibald.com/2015/tasks-microtasks-queues-and-schedules/)
## 并行/并发