#include <OnixS/FIXEngine/FIX/ThreadingModel.h>
Public Types | |
enum | Enum { Default, DedicatedThreads = 3, ThreadPool = 4, ExternalThread = 5 } |
Static Public Member Functions | |
static ONIXS_FIXENGINE_API const char * | toString (ThreadingModel::Enum value) |
static ONIXS_FIXENGINE_API Enum | parse (const std::string &fromText) |
Definition at line 29 of file ThreadingModel.h.
enum Enum |
Enumerator | |
---|---|
Default |
By default, the session will use the mode that was configured for the whole Engine. |
DedicatedThreads |
The session will use its own sending and receiving threads. |
ThreadPool |
The session will share the thread pool. |
ExternalThread |
Session events are handled by rolling an event loop in a user thread. |
Definition at line 30 of file ThreadingModel.h.
|
static |
Parses the ThreadingModel::Enum value from the textual representation.
|
static |
Returns a textual representation of the ThreadingModel::Enum value.