A nexus to a network socket or a component which is capable of I/O operations such as read, write, connect, and bind. 一个网络套接字或组件的枢纽, 用来进行 I/O 操作, 例如 read, write, connect, bind. A channel provides a user: 一个Channel的提供给用户的东西有: the current state of the…
在netty中有我们一般有两种发送数据的方式,即使用ChannelHandlerContext或者Channel的write方法,这两种方法都能发送数据,那么其有什么区别呢.这儿引用netty文档中的解释如下. 这个通俗一点的解释呢可以说ChannelHandlerContext执行写入方法时只会执行当前handler之前的OutboundHandler.而Channel则会执行所有的OutboundHandler.下面我们可以通过例子来理解 1.建立一个netty服务端 public cl…