Oracle® Coherence .NET API Reference Release 3.7.1
E22844-03

Event mask enum.

Namespace:  Tangosol.Util.Filter
Assembly:  Coherence (in Coherence.dll) Version: 3.7.1.23 (3.7.1.23)

Syntax

C#
[FlagsAttribute]
public enum CacheEventMask

Members

Member nameDescription
Inserted
This value indicates that Inserted events should be evaluated.
Updated
This value indicates that Updated events should be evaluated.
Deleted
This value indicates that Deleted events should be evaluated.
UpdatedEntered
This value indicates that Updated events should be evaluated, but only if filter evaluation is false for the old value and true for the new value.
UpdatedLeft
This value indicates that Updated events should be evaluated, but only if filter evaluation is true for the old value and false for the new value.
UpdatedWithin
This value indicates that Updated events should be evaluated, but only if filter evaluation is true for both the old and the new value.
All
This value indicates that all events should be evaluated.
Keys
This value indicates that all events that would affect the result of an ICache.Keys query should be evaluated.

See Also