Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Factory pattern: instantiate a new CacheEventArgs corresponding to the specified parameters.

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

Syntax

C#
protected virtual CacheEventArgs InstantiateCacheEvent(
	CacheEventType type,
	Object key,
	Object valueOld,
	Object valueNew
)

Parameters

type
Type: Tangosol.Net.Cache..::..CacheEventType
This event's type, one of CacheEventType values.
key
Type: System..::..Object
The key into the cache.
valueOld
Type: System..::..Object
The old value (for update and delete events).
valueNew
Type: System..::..Object
The new value (for insert and update events).

Return Value

A new instance of the CacheEventArgs class (or a subclass thereof).

See Also