Definition at line 28 of file ThreadingModel.h.
◆ Enum
| Enumerator |
|---|
| Dedicated | | Each session has a sender thread and a receiving thread.
|
| Pool | | Sessions share a thread pool.
|
| External | | Session events are handled by rolling an event loop in a user thread.
|
| Default | Dedicated | The default mode.
|
Definition at line 30 of file ThreadingModel.h.
31 {
33 Dedicated,
34
36 Pool,
37
39 External,
40
42 Default = Dedicated,
43 };
◆ parse()
| Enum parse |
( |
const std::string & | text | ) |
|
|
static |
◆ toString()
| std::string toString |
( |
Enum | type | ) |
|
|
static |
- Returns
- a string that represents the given value.