コード例 #1
0
 @Override
 public void channelInactive(ChannelHandlerContext ctx) throws Exception {
   httpClientResponseHandler.handleChannelInactive(ctx);
   super.channelReadComplete(ctx);
 }
コード例 #2
0
 @Override
 public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {
   httpClientResponseHandler.handleResponse(ctx, msg);
 }