quickfix
Interface SessionFactory

All Known Implementing Classes:
DefaultSessionFactory

public interface SessionFactory

Creates a Session based on the specified settings.


Field Summary
static java.lang.String ACCEPTOR_CONNECTION_TYPE
           
static java.lang.String INITIATOR_CONNECTION_TYPE
           
static java.lang.String SETTING_CONNECTION_TYPE
          Specifies the connection type for a session.
static java.lang.String SETTING_CONTINUE_INIT_ON_ERROR
          Instructs the connection-related code to continue if there is an error creating or initializing a session.
 
Method Summary
 Session create(SessionID sessionID, SessionSettings settings)
           
 

Field Detail

SETTING_CONNECTION_TYPE

static final java.lang.String SETTING_CONNECTION_TYPE
Specifies the connection type for a session. Valid values are "initiator" and "acceptor".

See Also:
Constant Field Values

SETTING_CONTINUE_INIT_ON_ERROR

static final java.lang.String SETTING_CONTINUE_INIT_ON_ERROR
Instructs the connection-related code to continue if there is an error creating or initializing a session. In other words, one bad session won't stop the initialization of other sessions.

See Also:
Constant Field Values

ACCEPTOR_CONNECTION_TYPE

static final java.lang.String ACCEPTOR_CONNECTION_TYPE
See Also:
Constant Field Values

INITIATOR_CONNECTION_TYPE

static final java.lang.String INITIATOR_CONNECTION_TYPE
See Also:
Constant Field Values
Method Detail

create

Session create(SessionID sessionID,
               SessionSettings settings)
               throws ConfigError
Throws:
ConfigError