Ejemplo n.º 1
0
 public void close(int closeCode, String closeMessage) throws IOException, TimeoutException {
   try {
     delegate.close(closeCode, closeMessage);
   } finally {
     this.connection.unregisterChannel(this);
   }
 }
Ejemplo n.º 2
0
 public void close() throws IOException, TimeoutException {
   try {
     delegate.close();
   } finally {
     this.connection.unregisterChannel(this);
   }
 }