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

Construct a ConditionalProcessor for the specified filter and the processor.

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

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