DataVeracity EnumerationNFX Class Library

[This is preliminary documentation and is subject to change.]

Stipulates levels of data fidality, the higher the level - the more accurately verified data is provided

Namespace: NFX.DataAccess.Distributed
Assembly: NFX (in NFX.dll) Version: 3.0.0.1 (3.0.0.1)
Syntax

public enum DataVeracity
Members

  Member nameValueDescription
Maximum0 The highest level of data accuracy - the backend will compare data from multiple storage mediums/devices to calculate the most accurate/latest data. This mode is the slowest among the others
BackedUp1 The backend will return the data which is stored in more than one device/medium
Any2 The backend will return the fist available data as soon as it finds it. This mode is the fastest however it may return data that has since been overwritten in some other storage devices/mediums. This mode may be used in cases when performance is paramount but 100% data accuracy is not really needed, i.e. when showing message/forum post comments on a social web site
See Also