Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 291 Bytes

ch1-async-in-netty.md

File metadata and controls

5 lines (4 loc) · 291 Bytes

理解Netty中的异步

首先,事件驱动的Handler机制本身就是异步的。其次,ChannelFuture为异步操作提供了同步的方式。与Future对应的还有ChannelListener

Future可以理解为化异步为同步的一个方式。JDK里的Future就是如此。