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

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

Syntax

C#
public FilterEventArgs(
	IObservableCache cache,
	CacheEventType type,
	Object key,
	Object valueOld,
	Object valueNew,
	bool isSynthetic,
	CacheEventArgs..::..TransformationState transformState,
	IFilter[] filters
)

Parameters

cache
Type: Tangosol.Net.Cache..::..IObservableCache
The IObservableCache object that fired the event
type
Type: Tangosol.Net.Cache..::..CacheEventType
This event's type.
key
Type: System..::..Object
The key into the cache.
valueOld
Type: System..::..Object
The old value.
valueNew
Type: System..::..Object
The new value.
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 TransformationState state describing how this event has been or should be transformed.
filters
Type: array<Tangosol.Util..::..IFilter>[]()[][]
An array of filters that caused this event.

See Also