Enum ResultState
Indicates the freshness (how up-to-date it is) of a cached query result.
public enum ResultState
Fields
Fresh = 2The result is in the cache and considered up to date according to the freshness policy. Update handlers may or may not be invoked later, depending on whether new data is available.
Stale = 1The result is in the cache, but not up to date according to the freshness policy. Update handlers will be invoked shortly to provide refreshed data.
Uncached = 0The result is not in the cache. Update handlers will not be invoked.