Click or drag to resize

ConverterCollectionsGetCacheEventArgs Method

.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Returns an instance of a CacheEventArgs that uses IConverters to retrieve the event data.

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntax
C#
public static CacheEventArgs GetCacheEventArgs(
	IObservableCache cache,
	CacheEventArgs evt,
	IConverter convKey,
	IConverter convVal
)

Parameters

cache
Type: Tangosol.Net.CacheIObservableCache
The new event's source.
evt
Type: Tangosol.Net.CacheCacheEventArgs
The underlying CacheEventArgs.
convKey
Type: Tangosol.UtilIConverter
The IConverter to view the underlying CacheEventArgs' key.
convVal
Type: Tangosol.UtilIConverter
The IConverter to view the underlying CacheEventArgs' values.

Return Value

Type: CacheEventArgs
A CacheEventArgs that converts the passed event data using the specified IConverters.
See Also