コード例 #1
0
 @Override
 public void freeOutboundBuffer(ChannelHandlerContext ctx) {
   ctx.outboundByteBuffer().free();
 }
コード例 #2
0
 @Override
 public void discardOutboundReadBytes(ChannelHandlerContext ctx) throws Exception {
   if (ctx.hasOutboundByteBuffer()) {
     ctx.outboundByteBuffer().discardSomeReadBytes();
   }
 }