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

Add a cache listener that receives events based on a filter evaluation.

Namespace:  Tangosol.Net.Cache.Support
Assembly:  Coherence (in Coherence.dll) Version: 3.7.1.23 (3.7.1.23)

Syntax

C#
public virtual void AddListener(
	ICacheListener listener,
	IFilter filter,
	bool isLite
)

Parameters

listener
Type: Tangosol.Net.Cache..::.ICacheListener
The ICacheListener to add.
filter
Type: Tangosol.Util..::.IFilter
An IFilter that will be passed CacheEventArgs objects to select from; a CacheEventArgs will be delivered to the listener only if the filter evaluates to true for that CacheEventArgs; null is equivalent to a filter that alway returns true.
isLite
Type: System..::.Boolean
true to indicate that the CacheEventArgs objects do not have to include the OldValue and NewValue property values in order to allow optimizations.

See Also