Beispiel #1
0
 /** When TcpConnection terminates. */
 public void onConnectionTerminated(TcpConnection tcp_conn, Exception error) {
   if (listener != null) listener.onTransportTerminated(this, error);
   TcpSocket socket = tcp_conn.getSocket();
   if (socket != null)
     try {
       socket.close();
     } catch (Exception e) {
     }
   this.tcp_conn = null;
   this.listener = null;
 }