Click or drag to resize

CacheEventArgs Class

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
An event which indicates that the content of a cache has changed.
Inheritance Hierarchy

Namespace:  Tangosol.Net.Cache
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
[SerializableAttribute]
public class CacheEventArgs

The CacheEventArgs type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyCache
Gets the IObservableCache object on which this event has actually occured.
Public propertyEventType
Gets this event's type.
Public propertyIsExpired
Return true if this event is an expired event.
Public propertyIsPriming
Return true if this event is a priming event.
Public propertyIsSynthetic
Return true if this event is caused by the cache internal processing such as eviction or loading.
Public propertyKey
Gets a key associated with this event.
Public propertyNewValue
Gets a new value associated with this event.
Public propertyOldValue
Gets an old value associated with this event.
Public propertyTransformState
Return TransformationState for this event.
Top
Methods
  NameDescription
Public methodDispatch
Dispatch this event to the specified MapListener.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Protected methodGetDescription
Get the event's description.
Public methodStatic memberGetDescription(CacheEventType)
Convert an event type into a human-readable string.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodShouldDispatch
Return true if the provided ICacheListener should receive this event.
Public methodToString
Return a string representation of this CacheEventArgs object.
(Overrides ObjectToString.)
Top
Fields
  NameDescription
Protected fieldm_eventType
The event's type.
Protected fieldm_isExpired
The expired event flag.
Protected fieldm_isPriming
The priming event flag.
Protected fieldm_isSynthetic
Event cause flag.
Protected fieldm_key
A key.
Protected fieldm_source
The event's source.
Protected fieldm_transformState
The transformation state for this event
Protected fieldm_valueNew
A new value.
Protected fieldm_valueOld
A previous value.
Top
Remarks
Possible cache changes that can be respresented by this class are:
  • an entry has been added
  • an entry has been removed
  • an entry has been changed

A CacheEventArgs object is sent as an argument to the ICacheListener interface methods. null values may be provided for the old and the new values.

See Also