Netty处理程序,我们应该在覆盖时编写super.channelRead(),它的工作是什么?

时间:2016-04-29 08:39:42

标签: netty handler

public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {
    super.channelRead(ctx, msg);
    //write our own code here
}

我们是否应该写super.channelRead?为什么?

1 个答案:

答案 0 :(得分:1)

Whether should we write super.channelRead?

这取决于。 ChannelInboundHandlerAdapterchannelRead的默认行为是将msg转发到下一个ChannelInboundHandler。如果没有其他处理程序关心msg,则无需调用它。