Click or drag to resize

OrchestratorConfigRecordFilterPredicate Property

A predicate (boolean function) that takes a single record and returns true to accept the record or false to reject it; specific to RecordFilter transformer type. Note that in case all records for a cluster are rejected, then the cluster will be rejected. If not supplied, a default pass-through predicate is used that always returns true, i.e.:
rec => true
Any exception thrown by this function will cause the process shutdown (CompletionStatus of Failed).

Namespace:  Mavidian.DataConveyer.Orchestrators
Assembly:  DataConveyer (in DataConveyer.dll) Version: 3.4.6+1324144ff7
Syntax
public Func<IRecord, bool> RecordFilterPredicate { get; set; }

Property Value

Type: FuncIRecord, Boolean
See Also