Enum FileFlushPolicy
The File-based storage flush policy.
This controls the necessity to flush data on the disk after each update of .summary and .state log files.
Namespace: OnixS.Cme.ILink3.Storage
Assembly: OnixS.Cme.ILink3.dll
Syntax
public enum FileFlushPolicy
Fields
| Name | Description |
|---|---|
| Flush | Call Flush(false). It gives the normal latency and the normal reliability. It is used by default. |
| FlushToDisk | Call Flush(true). It gives the maximal latency and the maximal reliability. |
| None | Do not call Flush(). It gives the minimal latency and the minimal reliability. |