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