Click or drag to resize

ConverterCollectionsGetCacheEventArgs Method

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
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.14 (14.1.1.14)
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