Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Constructs a new CacheEventArgs.

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

Syntax

C#
public CacheEventArgs(
	IObservableCache source,
	CacheEventType eventType,
	Object key,
	Object valueOld,
	Object valueNew,
	bool isSynthetic,
	CacheEventArgs..::..TransformationState transformState,
	bool isPriming
)

Parameters

source
Type: Tangosol.Net.Cache..::..IObservableCache
The IObservableCache object that fired the event.
eventType
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).
isSynthetic
Type: System..::..Boolean
true if the event is caused by the cache internal processing such as eviction or loading.
transformState
Type: Tangosol.Net.Cache..::..CacheEventArgs..::..TransformationState
true if the event is a priming event. has been or should be transformed.
isPriming
Type: System..::..Boolean
true if the event is a priming event.

See Also