Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Event mask enum.

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

Syntax

C#
[FlagsAttribute]
public enum CacheEventMask

Members

Member nameValueDescription
Inserted1 This value indicates that Inserted events should be evaluated.
Updated2 This value indicates that Updated events should be evaluated.
Deleted4 This value indicates that Deleted events should be evaluated.
UpdatedEntered8 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.
UpdatedLeft16 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.
UpdatedWithin32 This value indicates that Updated events should be evaluated, but only if filter evaluation is true for both the old and the new value.
All7 This value indicates that all events should be evaluated.
Keys29 This value indicates that all events that would affect the result of an ICache.Keys query should be evaluated.

See Also