Click or drag to resize

CacheEventArgs Constructor (IObservableCache, CacheEventType, Object, Object, Object, Boolean)

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Constructs a new CacheEventArgs.

Namespace:  Tangosol.Net.Cache
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public CacheEventArgs(
	IObservableCache source,
	CacheEventType eventType,
	Object key,
	Object valueOld,
	Object valueNew,
	bool isSynthetic
)

Parameters

source
Type: Tangosol.Net.CacheIObservableCache
The IObservableCache object that fired the event.
eventType
Type: Tangosol.Net.CacheCacheEventType
This event's type, one of CacheEventType values.
key
Type: SystemObject
The key into the cache.
valueOld
Type: SystemObject
The old value (for update and delete events).
valueNew
Type: SystemObject
The new value (for insert and update events).
isSynthetic
Type: SystemBoolean
true if the event is caused by the cache internal processing such as eviction or loading.
See Also