Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.1.0)
E69639-01
Constructs a new CacheEventArgs.

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

Syntax

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

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
The CacheEventArgs..::..TransformationState describing how this event has been or should be transformed.

See Also