Show / Hide Table of Contents

Class Split

The information about the split operator. Split operator has one input and many output links. Split operator allows users to take one data set and based on conditions produce many different outputs.

Inheritance
object
Operator
Split
Inherited Members
Operator.Key
Operator.ModelVersion
Operator.ParentRef
Operator.Name
Operator.Description
Operator.ObjectVersion
Operator.InputPorts
Operator.OutputPorts
Operator.ObjectStatus
Operator.Identifier
Operator.Parameters
Operator.OpConfigValues
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DataintegrationService.Models
Assembly: OCI.DotNetSDK.Dataintegration.dll
Syntax
public class Split : Operator

Properties

DataRoutingStrategy

Declaration
[JsonProperty(PropertyName = "dataRoutingStrategy")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Split.DataRoutingStrategyEnum? DataRoutingStrategy { get; set; }
Property Value
Type Description
Split.DataRoutingStrategyEnum?

Specify how to handle data that matches a split condition. Either data that matches the first condition should be removed from further processing by other conditions, or all matched data should be evaluated for all conditions.

In this article
Back to top