Netty事件传播详解
在netty的pipeline中包含两种类型的事件,分别为inbound和outbound,inbound为上行事件,outbound为下行事件。inbound事件为被动触发,在某些情况发生时自动触发;outbound为主动触发,在需要主动执行某些操作时触发。
inbound事件一般通过pipeline的fire**方法触发,包含如下:
1.fireChannelRegistered
channel注册事件,为inbound事件。
2.fireChannelUnregistered
channel解除注册事件,为inbound事件。
3.fireChannelActive
channel活跃事件,为inbound事件。
4.fireChannelInactive
channel非活跃事件,为inbound事件。
5.fireExceptionCaught
异常事件,这个事件会在所有handler里传播。
6.fireUserEventTriggered
用户事件,为inbound事件。
7.fireChannelRead
channel读事件,为inbound事件。
8.fireChannelReadComplete
channel读完成事件,为inbound事件。
9.fireChannelWritabilityChanged
channel写状态变化事件,为inbound事件。
在pipeline中通过fire触发的事件都会调用AbstractChannelHandlerContext对应的invoke方法,而且都会执行head的invoke 方法,该方法会调用该context的handler的对应处理方法,然后调用该context的fire 方法向后面的inbound context传播。
outbound事件包含如下:
1.bind
端口绑定事件。
2.connect
连接事件。
3.disconnect
断开连接事件。
4.close
关闭事件。
5.deregister
解除注册事件。
6.flush
刷新数据到网络事件。
7.read
读事件,在创建好NioSocketChannel后会触发该事件,用于注册该channel的OP_READ感兴趣事件到event loop的selector。
8.write
写事件。
9.writeAndFlush
写出数据事件。
outbound事件都会从pipeline的tail开始传播,从tail向head遍历寻找outbound类型的context,执行该context的handler的对应处理方法。
注意:HeadContext既是ChannelInboundHandler也是ChannelOutboundHandler,但HeadContext只是outbound类型context,不是inbound类型context,在触发inbound事件时,因为从HeadContext起先执行其handler(对于HeadContext和TailContext,其handler就是它们自身)的方法再传播,而其handler必须是ChannelInboundHandler类型,所以HeadContext的对应handler的方法也会执行,这也是HeadContext的handler必须既是ChannelInboundHandler也是ChannelOutboundHandler的原因。
2024-12-11 广告