Click or drag to resize

FilterEventArgs Constructor (IObservableCache, CacheEventType, Object, Object, Object, Boolean, CacheEventArgsTransformationState, Boolean, 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,
	CacheEventArgsTransformationState transformState,
	bool isPriming,
	IFilter[] filters
)

Parameters

cache
Type: Tangosol.Net.CacheIObservableCache
The IObservableCache object that fired the event
type
Type: Tangosol.Net.CacheCacheEventType
This event's type.
key
Type: SystemObject
The key into the cache.
valueOld
Type: SystemObject
The old value.
valueNew
Type: SystemObject
The new value.
isSynthetic
Type: SystemBoolean
true if the event is caused by the cache internal processing such as eviction or loading.
transformState
Type: Tangosol.Net.CacheCacheEventArgsTransformationState
The TransformationState state describing how this event has been or should be transformed.
isPriming
Type: SystemBoolean
true if the event is a priming event.
filters
Type: Tangosol.UtilIFilter
An array of filters that caused this event.
See Also