3

a). EventLoopGroup为每个新创建的channel分配一个EventLoop,多个channel对应一个EventLoop.
b). 一个EventLoop由一个不变的thread驱动,处理channel上所有的IO事件,
c). EventLoop往上一直集成自ScheduledExecutorService(定时Excutor)

3.1 EventExecutorGroup

//定时任务线程池        
public interface EventExecutorGroup extends ScheduledExecutorService;    
原文地址:https://www.cnblogs.com/Desneo/p/7305900.html