Oracle® Coherence .NET API Reference Release 3.7.1
E22844-03

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.7.1.23 (3.7.1.23)

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