Click or drag to resize

ConditionalProcessor Constructor (IFilter, IEntryProcessor)

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Construct a ConditionalProcessor for the specified filter and the processor.

Namespace:  Tangosol.Util.Processor
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public ConditionalProcessor(
	IFilter filter,
	IEntryProcessor processor
)

Parameters

filter
Type: Tangosol.UtilIFilter
The filter.
processor
Type: Tangosol.Net.CacheIEntryProcessor
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