Skip to content

Commit c87b4ec

Browse files
committed
update structure
1 parent 5b1673f commit c87b4ec

9 files changed

+8
-13
lines changed

README.md

+7-12
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,19 @@ Netty是Java世界知名的网络应用框架。本系列文章是Netty的源码
2222

2323
## 一、Netty的架构
2424

25-
### [1.概述](https://github.com/code4craft/netty-learning/blob/master/ch1-overview.md)
26-
### [2.Netty中的buffer](https://github.com/code4craft/netty-learning/blob/master/ch2-buffer.md)
27-
### [3.Channel与Pipeline](https://github.com/code4craft/netty-learning/blob/master/ch3-pipeline.md)
28-
### [4.Channel与NIO](https://github.com/code4craft/netty-learning/blob/master/ch4-channel-lifecycle.md) *未完成*
29-
### [5.Channel与Reactor模式](https://github.com/code4craft/netty-learning/blob/master/ch5-channel-nio.md) *未完成*
30-
### [6.分门别类讲讲Handler](https://github.com/code4craft/netty-learning/blob/master/ch6-handler.md) *未完成*
25+
### [1.概述](posts/ch1-overview.md)
26+
### [2.Netty中的buffer](posts/ch2-buffer.md)
27+
### [3.Channel中的Pipeline](posts/ch3-pipeline.md)
28+
### [4.Channel与Reactor模式](posts/ch4-reactor.md)
29+
### [5.分门别类讲讲Handler](posts/ch6-handler.md) *未完成*
3130

3231
## 二、Netty中的特性与细节
3332

34-
### [1.理解Netty中的异步](https://github.com/code4craft/netty-learning/blob/master/detail/ch1-async-in-netty.md) *未完成*
33+
### [1.理解Netty中的异步](posts/detail/ch1-async-in-netty.md)
3534

3635
## 三、Netty实战
3736

38-
### [1.构建一个socks proxy](https://github.com/code4craft/netty-learning/blob/master/socks-proxy-by-netty.md)
37+
### [1.构建一个socks proxy](posts/socks-proxy-by-netty.md)
3938

4039
=========
4140

@@ -82,9 +81,5 @@ twitter关于3.0与4.0中Channel Event的说明:
8281

8382
文档遵循CC-BYNC协议。
8483

85-
## 贡献:
86-
87-
你可以fork分支,修改后并提交pull request。pull request接受后,我会将你提升为项目commiter,并加入到贡献者名单里。
88-
8984
[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/code4craft/netty-learning/trend.png)](https://bitdeli.com/free "Bitdeli Badge")
9085

File renamed without changes.
File renamed without changes.

ch3-pipeline.md renamed to posts/ch3-pipeline.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Channel与Pipeline
1+
Channel中的Pipeline
22
--------
33
Channel是理解和使用Netty的核心。Channel的涉及内容较多,这里我使用由浅入深的介绍方法。在这篇文章中,我们主要介绍Channel部分中Pipeline实现机制。为了避免枯燥,借用一下《盗梦空间》的“梦境”概念,希望大家喜欢。
44

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)