project/netty/netty注释.md

22 lines
432 B
Markdown
Raw Normal View History

2022-02-18 01:36:50 -05:00
## Netty核心
![](img\architecture.png)
It is composed of three components - buffer, channel, and event model - and all advanced features are built on top of the three core components.
## Netty重点类
```java
Channel
ChannelFuture
ChannelFactory
ChannelGroup
ChannelGroupFuture
ChannelBuffer
// A ChannelEvent is handled by a list of ChannelHandlers in a ChannelPipeline.
ChannelPipeline
ChannelHandlers
ChannelEvent
```