Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Construct a ConditionalProcessor for the specified filter and the processor.

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

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