Click or drag to resize

FilterEventArgs Constructor (IObservableCache, CacheEventType, Object, Object, Object, Boolean, CacheEventArgs.TransformationState,IFilter[])

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Constructs a new FilterEventArgs.

Namespace:  Tangosol.Net.Cache
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
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:Tangosol.Util.IFilter[]
An array of filters that caused this event.
See Also