3 - EventLoop和线程模型-事件循环

a). EventLoopGroup为每个新创建的channel分配一个EventLoop,多个channel对应一个EventLoop.

b). 一个EventLoop由一个不变的thread驱动,处理channel上所有的IO事件,

c). EventLoop往上一直集成自ScheduledExecutorService(定时Excutor)

3.1 EventExecutorGroup

//定时任务线程池
public interface EventExecutorGroup extends ScheduledExecutorService;
上一篇:Qt 学习之路 2(72):线程和事件循环


下一篇:Spring mvc example