Reactor模型
一. 网址参考
1. 五分钟快速理解 Reactor 模型(CSDN)
2. 高性能网络编程之 Reactor 网络模型(彻底搞懂)(掘金)
3. Reactor线程模型(知乎)
5. 前端框架对比(VUE,Angular,React)
6. React(用于构建用户界面的 JavaScript 库) //安装TAURI之后的链接
二. 摘抄
1. Reactor的定义
参考文章:Reactor线程模型(知乎)
Reactor是什么?
The reactor design_pattern is an event_handling pattern for handling service requests delivered concurrently to a service handler by one or more inputs.
The service handler then demultiplexes the incoming requests and dispatches them synchronously to the associated request handlers.
from wiki
通过wiki中的定义我们可以发现Reactor的重点
- 事件驱动
- 可以处理一个或多个输入源
- 通过多路复用将请求的事件分发给对应的处理器处理