Skip to content

Commit 3074027

Browse files
committed
completed 通过 UDP 广播事件
1 parent 5572181 commit 3074027

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

NETTY BY EXAMPLE/12.5 Summary.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
总结
2+
====
3+
4+
在这一章里,你学习了如何在基于Netty应用程序同时简单的使用 SPDY 和 HTTP(s) 。这提供了一个基础,您可以受益于性能于 SPDY 提供的增强,同时允许现有客户访问您的应用程序。
5+
6+
您学习了如何使用 Netty 提供的 SPDY 助手类,如何使用 Google Chrome获取更多的运行时信息协议。
7+
8+
一路上我们看到了再次修改 ChannelPipeline 如何帮助您构建强大的多路复用器在单个连接的生命周期切换协议。
9+
10+
下一章你学习如何利用高性能、无连接的 UDP。
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
通过 UDP 广播事件
2+
====
3+
4+
本章介绍
5+
6+
* UDP 介绍
7+
* ChannelHandler, Decoder, 和 Encoder
8+
* 引导基于 Netty 的应用
9+
10+
前面的章节都是在示例中使用 TCP 协议,这一章,我们将使用UDP。UDP是一种无连接协议,若需要很高的性能和对数据的完成性没有严格要求,那使用 UDP 是一个很好的方法。最著名的基于UDP协议的是用来域名解析的DNS。这一章将给你一个好的理解的无连接协议所以你能够做出明智的决定何时使用 UDP 在您的应用程序。
11+
12+
我们将首先从一个 UDP 的概述,其特点和局限性开始讲解。之后,我们将在本章描述了示例应用程序的开发。
13+

SUMMARY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ This is the summary of my book.
8080
* [示例程序](NETTY BY EXAMPLE/The sample application.md)
8181
* [实现](NETTY BY EXAMPLE/Implementation.md)
8282
* [启动 SpdyServer 并测试](NETTY BY EXAMPLE/Start the SpdyServer and test it.md)
83+
* [总结](NETTY BY EXAMPLE/12.5 Summary.md)
8384
* [通过 UDP 广播事件](NETTY BY EXAMPLE/Broadcasting events with UDP.md)
8485
* 高级主题
8586
* [实现自定义编解码器](ADVANCED TOPICS/Implement a custom codec.md)

0 commit comments

Comments
 (0)