Oracle® Coherence .NET API Reference Release 3.7.1
E22844-03

Constructs a new CacheEventArgs.

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

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 event transformation state.

See Also