Click or drag to resize

ConditionalProcessor Constructor (IFilter, IEntryProcessor)

.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Construct a ConditionalProcessor for the specified filter and the processor.

Namespace:  Tangosol.Util.Processor
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
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