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

Construct a ConditionalProcessor for the specified filter and the processor.

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

Syntax

C#
public ConditionalProcessor(
	IFilter filter,
	IEntryProcessor processor
)

Parameters

filter
Type: Tangosol.Util..::.IFilter
The filter.
processor
Type: Tangosol.Net.Cache..::.IEntryProcessor
The entry processor.

Remarks

The specified entry processor gets invoked if and only if the filter applied to the IInvocableCacheEntry evaluates to true; otherwize the result of the Process(IInvocableCacheEntry) invocation will return null.

See Also