CacheEventFilterCacheEventMask Enumeration |
Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Event mask enum.
Namespace:
Tangosol.Util.Filter
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax[FlagsAttribute]
public enum CacheEventMask
Members
| Member name | Value | Description |
---|
| Inserted | 1 |
This value indicates that
Inserted events should be
evaluated.
|
| Updated | 2 |
This value indicates that
Updated events should be
evaluated.
|
| Deleted | 4 |
This value indicates that
Deleted events should be
evaluated.
|
| UpdatedEntered | 8 |
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 | 16 |
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 | 32 |
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 | 7 |
This value indicates that all events should be evaluated.
|
| Keys | 29 |
This value indicates that all events that would affect the
result of an ICache.Keys query should be evaluated.
|
See Also