Click or drag to resize

CacheListenerSupportDispatch Method (CacheEventArgs, Listeners)

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Dispatch the CacheEventArgs to the specified Listeners collection.

Namespace:  Tangosol.Net.Cache.Support
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public static void Dispatch(
	CacheEventArgs evt,
	Listeners listeners
)

Parameters

evt
Type: Tangosol.Net.CacheCacheEventArgs
The CacheEventArgs.
listeners
Type: Tangosol.UtilListeners
The Listeners collection.
Exceptions
ExceptionCondition
InvalidCastException If any of the targets is not an instance of ICacheListener interface.
Remarks
This call is equivalent to
            Dispatch(evt, listeners, true);
            
See Also