コード例 #1
0
 @Override
 public void exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) {
   e.getCause().printStackTrace();
   Channel ch = e.getChannel();
   ch.close();
 }
コード例 #2
0
ファイル: NettyCommunicator.java プロジェクト: jhorey/Paja
 /** Something has happened to one of the open channels. Just shut it down. */
 @Override
 public void exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e) {
   e.getChannel().close();
 }