Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Conditional entry processor represents a processor that is invoked conditionally based on the result of an entry evaluation.

Namespace: Tangosol.Util.Processor
Assembly: Coherence (in Coherence.dll) Version: 12.2.1.4014 (12.2.1.4014)

Syntax

C#
public class ConditionalProcessor : AbstractProcessor, 
	IPortableObject

Remarks

If the underlying filter expects to evaluate existent entries only (i.e. entries for which IsPresent is true, it should be combined with a PresentFilter as follows:
            IFilter filterPresent = new AndFilter(new PresentFilter(), filter);
            

Inheritance Hierarchy

System..::..Object
  Tangosol.Util.Processor..::..AbstractProcessor
    Tangosol.Util.Processor..::..ConditionalProcessor

See Also