Click or drag to resize

CacheListenerSupportDispatch Method (CacheEventArgs, Listeners)

.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Dispatch the CacheEventArgs to the specified Listeners collection.

Namespace:  Tangosol.Net.Cache.Support
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
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