Click or drag to resize

OrchestratorConfigRecordboundTransformer Property

A function that takes a single record and returns a single record; specific to Recordbound transformer type. In case the function returns null (Nothing in Visual Basic), the record will be filtered out. This makes the and RecordFilterPredicate a special case of and RecordboundTransformer where unfiltered records are passed through. If not supplied, a default pass-through function is used that passes input record to output, i.e.:
rec => rec
Any exception thrown by this function will cause the process shutdown with a completion status of Failed.

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

Property Value

Type: FuncIRecord, IRecord
See Also