Package com.opengamma.transport

Examples of com.opengamma.transport.FudgeConnectionStateListener.connectionFailed()


        s_logger.info(errorMessage);
        terminate();
      }
      final FudgeConnectionStateListener listener = _listener;
      if (listener != null) {
        listener.connectionFailed(_connection, cause);
      }
    }

    @Override
    public void terminate() {
View Full Code Here


 
  protected void notifyConnectionFailed(Exception e) {
    final FudgeConnectionStateListener stateListener = _stateListener;
    if (stateListener != null) {
      try {
        stateListener.connectionFailed(SocketFudgeConnection.this, e);
      } catch (Exception e2) {
        s_logger.warn("Error notifying state listener of connection failure", e2);
      }
    }
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.