| 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)
Function(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; }
Public Property UniversalTransformer As Func(Of ICluster, IEnumerable(Of ICluster))
Get
Set
Property Value
Type:
FuncICluster,
IEnumerableIClusterSee Also