#include <OnixS/FIXEngine/FIX/Engine.h>
Definition at line 40 of file Engine.h.
void addListenPort |
( |
int |
port, |
|
|
ISessionReactor * |
stack = ONIXS_FIXENGINE_NULLPTR |
|
) |
| |
Adds the listen port(s) for incoming connections.
- Parameters
-
port | The listen port(s) for incoming connections. |
stack | An instance(s) of an externally managed reactor(s) for acceptor sessions and the given listen port(s). |
- Exceptions
-
An | exception if the FIX Engine cannot start listening on the specified port(s) or the telecommunication level is disabled (the Listen Port is -1 or 0). |
- Note
- This call is thread-safe.
void addSessionDictionary |
( |
const std::string & |
dictionaryFile | ) |
|
Adds the session level dictionary(s) from the XML file(s) with the description of the FIX Dictionary(s).
- Note
- More than one file could be specified. The symbol '|' is used as the file name delimiter.
- Parameters
-
dictionaryFile | Specifies the path(s) to the XML file(s) with the description of the FIX Dictionary(s). |
- Exceptions
-
The | OnixS::DomainException if there are standard dictionary(s) in the XML file(s). |
- Note
- This call is thread-safe.
void addSessionDictionaryFromString |
( |
const std::string & |
dialectString | ) |
|
Adds the session level dictionary(s) from the plain text string with the description of the FIX Dictionary(s).
- Parameters
-
dialectString | Specifies the plain text string with the description of the FIX Dictionary(s). |
- Exceptions
-
The | OnixS::DomainException if there are standard dictionary(s) in the dialect string. |
- Note
- This call is thread-safe.
void addSslListenPort |
( |
int |
port | ) |
|
Adds the ssl listen port(s) for incoming ssl connections.
- Exceptions
-
An | exception if the FIX Engine cannot start listening on the specified ssl port(s) or the telecommunication level is disabled (the Listen Port is -1 or 0). |
- Note
- This call is thread-safe.
Returns the array of loaded dictionaries.
Initializes the FIX Engine.
- Parameters
-
listenPort | The engine listens on this port for incoming connections. If '0' then only session-initiators can be created. If '-1' then the telecommunication level is disabled and only the message parsing/assembling can be used. |
stack | An instance of an externally managed reactor for acceptor sessions. |
- Note
- This call is thread-safe.
static Engine* init |
( |
const std::string & |
configFile, |
|
|
ISessionReactor * |
stack = ONIXS_FIXENGINE_NULLPTR |
|
) |
| |
|
static |
Initializes the FIX Engine.
- Parameters
-
configFile | The configuration file. |
stack | An instance(s) of an externally managed reactor for acceptor sessions. |
- Note
- This call is thread-safe.
Initializes the FIX Engine.
- Parameters
-
settings | Engine settings. |
stack | An instance(s) of an externally managed reactor for acceptor sessions. |
- Note
- This call is thread-safe.
static Engine* initFromString |
( |
const std::string & |
configuration, |
|
|
ISessionReactor * |
stack = ONIXS_FIXENGINE_NULLPTR |
|
) |
| |
|
static |
Initializes the FIX Engine.
- Parameters
-
configuration | The configuration string. |
stack | An instance(s) of an externally managed reactor for acceptor sessions. |
- Note
- This call is thread-safe.
static bool initialized |
( |
| ) |
|
|
static |
Returns 'true' if the FIX Engine has been initialized, otherwise - 'false'.
- Note
- This call is thread-safe.
Returns the Engine instance.
- Exceptions
-
The | OnixS::DomainException if the FIX Engine has not been initialized yet. |
- Note
- This call is thread-safe.
Returns the Engine's license expiration date.
Returns the listen port.
The FIX Engine listens on this port for incoming connections.
void log |
( |
const std::string & |
message | ) |
|
Logs the given user's message to FIX Engine's log file.
- Note
- This call is thread-safe.
const std::string& logDirectory |
( |
| ) |
const |
Returns the Engine log directory.
Inbound and outbound FIX messages, session's state data, and the FIX Engine log file are stored in this directory.
Registers the Engine listener.
- Exceptions
-
An | exception if the listener is already registered. |
- Note
- This call is thread-safe.
void removeListenPort |
( |
int |
port | ) |
|
Removes the listen port(s) for incoming connections.
- Exceptions
-
An | exception if the telecommunication level is disabled (the Listen Port is -1 or 0). |
- Note
- This call is thread-safe.
void removeSslListenPort |
( |
int |
port | ) |
|
Removes the ssl listen port(s) for incoming ssl connections.
- Exceptions
-
An | exception if the telecommunication level is disabled (the Listen Port is -1 or 0). |
- Note
- This call is thread-safe.
Returns the current Engine-level settings.
Shutdowns the FIX Engine and releases all resources.
- Note
- This call is thread-safe.
void synchronizeHighResolutionTimeServiceWithSystemTime |
( |
| ) |
|
Performs the synchronization of the high-resolution internal time service with the system time on the Windows OS.
On OSes less than Windows 8 and Windows Server 2012, the internal high-resolution time service, is based on the QueryPerformanceCounter API. This service is synchronized with the system time only once when an application is started, as a result, a time difference can occur in time. Therefore, for such old windows versions, it makes sense to synchronize the internal time service periodically (e.g. once per day) with the system time to avoid time drift issues.
- Exceptions
-
An | exception if there is a session in the non-disconnected state. |
- Note
- This call is thread-safe.
-
The method should be called when all sessions are disconnected to avoid time resynchronization side effects.
void unregisterListener |
( |
| ) |
|
Unregisters the Engine listener.
- Note
- This call is thread-safe.
The documentation for this class was generated from the following file: