quickfix
Interface Responder

All Known Implementing Classes:
IoSessionResponder

public interface Responder

Used by a Session to send raw FIX message data and to disconnect a connection. This interface is used by Acceptor or Initiator implementations.

See Also:
Session, Acceptor, Initiator

Method Summary
 void disconnect()
          Disconnect the underlying connection.
 java.lang.String getRemoteIPAddress()
          Provides remote IP address of the session connection, if any.
 boolean send(java.lang.String data)
          Send a raw FIX message
 

Method Detail

send

boolean send(java.lang.String data)
Send a raw FIX message

Parameters:
data - the raw FIX message data
Returns:
true is successful, false if send operation failed

disconnect

void disconnect()
Disconnect the underlying connection.


getRemoteIPAddress

java.lang.String getRemoteIPAddress()
Provides remote IP address of the session connection, if any.

Returns:
remote IP address if connected, empty string if not.