Enum StorageReadingMode
The storage reading algorithm mode. This affects the session's creation time when it restores messages from the File-based Storage.
Namespace: OnixS.Fix.Storage
Assembly: OnixS.Fix.Engine.dll
Syntax
public enum StorageReadingMode
Fields
| Name | Description |
|---|---|
| Default | Stored messages could contain fields with embedded SOH characters. Therefore, the reading algorithm works slowly because it processes all messages (incoming and outgoing) one by one. |
| NoEmbeddedSohCharacters | Stored messages do not contain fields with embedded SOH characters. Therefore, the reading algorithm works fast because it processes outgoing messages only and skips incoming ones. |