Click or drag to resize

OrchestratorConfigClusterboundTransformer Property

A function that takes a single cluster and returns a single cluster; specific to Clusterbound transformer type. In case the function returns null (Nothing in Visual Basic), the cluster will be filtered out. This makes the and ClusterFilterPredicate a special case of and ClusterboundTransformer where unfiltered clusters are passed through. If not supplied, a default pass-through function is used that passes input cluster to output, i.e.:
clstr => clstr
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<ICluster, ICluster> ClusterboundTransformer { get; set; }

Property Value

Type: FuncICluster, ICluster
See Also