0
public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {
super.channelRead(ctx, msg);
//write our own code here
}
super.channelReadを記述するかどうかなぜ?Nettyハンドラ、オーバーライド時にsuper.channelRead()を記述する必要があります。そのジョブは何ですか?
ハンドラを拡張するクラスはどれですか? –