Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Add a standard cache listener that will receive all events (inserts, updates, deletes) that occur against the cache, with the key, old-value and new-value included.

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

Syntax

C#
public virtual void AddCacheListener(
	ICacheListener listener
)

Parameters

listener
Type: Tangosol.Net.Cache..::..ICacheListener
The ICacheListener to add.

Implements

IObservableCache..::..AddCacheListener(ICacheListener)

Remarks

This has the same result as the following call:
            AddCacheListener(listener, (IFilter) null, false);
            

See Also