Click or drag to resize

OrchestratorConfigUniversalTransformer Property

A function that takes a single cluster and returns a sequence of clusters; specific to Universal transformer type. If not supplied, a default pass-through function is used that passes input cluster to output as a single element enumerable, i.e.:
clstr => Enumerable.Repeat(clstr, 1)
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, IEnumerable<ICluster>> UniversalTransformer { get; set; }

Property Value

Type: FuncICluster, IEnumerableICluster
See Also