public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {
super.channelRead(ctx, msg);
//write our own code here
}
我们是否应该写super.channelRead?为什么?
答案 0 :(得分:1)
Whether should we write super.channelRead?
这取决于。 ChannelInboundHandlerAdapter中channelRead
的默认行为是将msg转发到下一个ChannelInboundHandler
。如果没有其他处理程序关心msg
,则无需调用它。