We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d76057 commit 114c32cCopy full SHA for 114c32c
README.md
@@ -56,6 +56,8 @@ twitter关于3.0与4.0中Channel Event的说明:
56
[@章炎-友盟](http://weibo.com/dirlt)的博客:
57
[http://dirlt.com/netty.html](http://dirlt.com/netty.html)
58
59
+[@李林锋hw](http://weibo.com/lilinfeng)的大作: [Netty5.0架构剖析和源码解读.pdf](http://vdisk.weibo.com/s/C9LV9iVqH13rW)
60
+
61
## 使用Netty的开源项目:
62
63
* ### [Dubbo](https://github.com/alibaba/dubbo)
detail/ch1-async-in-netty.md
@@ -1,4 +1,5 @@
1
理解Netty中的异步
2
====
3
-首先,事件驱动的Handler机制本身就是异步的。其次,`ChannelFuture`保证了操作的异步性。
+首先,事件驱动的Handler机制本身就是异步的。其次,`ChannelFuture`为异步操作提供了同步的方式。与Future对应的还有`ChannelListener`。
4
5
+Future可以理解为化异步为同步的一个方式。JDK里的`Future`就是如此。
0 commit comments