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

Constructs a new FilterEvent.

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

Syntax

C#
public FilterEventArgs(
	IObservableCache map,
	CacheEventType type,
	Object oKey,
	Object oValueOld,
	Object oValueNew,
	bool isSynthetic,
	CacheEventArgs..::.TransformationState transformState,
	IFilter[] aFilter
)

Parameters

map
Type: Tangosol.Net.Cache..::.IObservableCache
The IObservableCache object that fired the event
type
Type: Tangosol.Net.Cache..::.CacheEventType
This event's type.
oKey
Type: System..::.Object
The key into the map
oValueOld
Type: System..::.Object
The old value
oValueNew
Type: System..::.Object
The new value
isSynthetic
Type: System..::.Boolean
true iff the event is caused by the cache internal processing such as eviction or loading
transformState
Type: Tangosol.Net.Cache..::.CacheEventArgs..::.TransformationState
The TransformationState state describing how this event has been or should be transformed.
aFilter
Type: array< Tangosol.Util..::.IFilter >[]()[]
An array of filters that caused this event

See Also