Oracle® Coherence .NET API Reference Release 3.6.1
E18812-01

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: 3.6.1.0 (3.6.1.0)

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