Table of Contents

Enum ResultState

Namespace
The.Caching
Assembly
Instagile.dll

Indicates the freshness (how up-to-date it is) of a cached query result.

public enum ResultState

Fields

Fresh = 2

The 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 = 1

The 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 = 0

The result is not in the cache. Update handlers will not be invoked.