CacheEventFilter Constructor (IFilter) |
.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Construct a
CacheEventFilter that evaluates
CacheEventArgs objects that would affect the
results of a keys collection filter issued by a previous call to
Keys.
Namespace:
Tangosol.Util.Filter
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntaxpublic CacheEventFilter(
IFilter filter
)
Parameters
- filter
- Type: Tangosol.UtilIFilter
The filter passed previously to a Keys query property.
Remarks
It is possible to easily implement
continuous query
functionality.
Using this constructor is equivalent to:
new CacheEventFilter(CacheEventMask.Keys, filter, CacheEventSyntheticMask.All);
See Also