#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 Session will use the mode that was configured for the whole Engine. |
DedicatedThreads |
Session will use its own sending and receiving threads. |
ThreadPool |
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 ThreadingModel::Enum value from textual representation.
|
static |
Returns textual representation of ThreadingModel::Enum value.