Ejemplo n.º 1
0
 public void removeConnectionEventListener(ConnectionEventListener connectionEventListener) {
   _eventListenerSupport.removeListener(connectionEventListener);
 }
Ejemplo n.º 2
0
 /**
  * Called by connection handle to indicate it has been closed.
  *
  * @param odeConnection
  */
 void connectionClosed(OdeConnectionImpl odeConnection) {
   _eventListenerSupport.connectionClosed(
       new ConnectionEvent(this, ConnectionEvent.CONNECTION_CLOSED));
 }
Ejemplo n.º 3
0
 public void addConnectionEventListener(ConnectionEventListener connectionEventListener) {
   _eventListenerSupport.addListener(connectionEventListener);
 }