Click or drag to resize

FilterTrigger Class

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
A generic Filter-based ICacheTrigger implementation.
Inheritance Hierarchy
SystemObject
  Tangosol.Util.FilterFilterTrigger

Namespace:  Tangosol.Util.Filter
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
[SerializableAttribute]
public class FilterTrigger : ICacheTrigger, 
	IPortableObject

The FilterTrigger type exposes the following members.

Constructors
  NameDescription
Public methodFilterTrigger
Default constructor.
Public methodFilterTrigger(IFilter)
Construct a FilterTrigger based on the specified IFilter object and Rollback.
Public methodFilterTrigger(IFilter, FilterTriggerActionCode)
Construct a FilterTrigger based on the specified IFilter object and the action code.
Top
Properties
  NameDescription
Public propertyAction
The action code for this FilterTrigger.
Public propertyFilter
Obtain the underlying IFilter.
Top
Methods
  NameDescription
Public methodEquals
Compare the FilterTrigger with another object to determine equality.
(Overrides ObjectEquals(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.)
Public methodGetHashCode
Determine a hash value for the FilterTrigger object according to the general GetHashCode contract.
(Overrides ObjectGetHashCode.)
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 methodProcess
This method is called before the result of a mutating operation represented by the specified entry object is committed into the underlying cache.
Public methodReadExternal
Restore the contents of a user type instance by reading its state using the specified IPofReader object.
Public methodToString
Return a human-readable description for this FilterTrigger.
(Overrides ObjectToString.)
Public methodWriteExternal
Save the contents of a POF user type instance by writing its state using the specified IPofWriter object.
Top
Fields
  NameDescription
Protected fieldm_action
The action code.
Protected fieldm_filter
The underlying filter.
Top
Remarks
If an evaluation of the ICacheTriggerEntry object representing a pending change fails (returns false), then one of the following actions is taken:
  • Rollback - an ArgumentException is thrown by the trigger to reject the operation that would result in this change (default);
  • Ignore - the change is ignored and the entry's value is reset to the original value returned by the OriginalValue;
  • Remove - the entry is removed from the underlying backing cache using the Remove(Boolean) call.
Note: This trigger never prevents entries from being removed.
See Also