Split End


The Split End node is used to mark the end of a Split process in the integration flow, and merges and outputs all the processed messages in between to downstream. The input message obtained using expression in downstream nodes will be the message after the merge.


It must be used together with the Split node. If there is more than one Split node, it will be paired with the closest Split node.


Node Type

Logic.


Input and Output Ability

This node has 1 entry point and 1 exit point. The input and output are JSON.


Node Properties

../../_images/split_end.png


Name

The name for this node.


Description

The description for this node.

Samples

Input Sample

The input is multiple messages split by the Split node:

{"assetId": "KNEeD968"}
{"assetId": "fRZlKAwr"}
{"assetId": "GQS2WVN9"}
{"assetId": "U0QUTjew"}
{"assetId": "JTy2vwzz"}
{"assetId": "gSnPZup6"}
{"assetId": "SoTwDKEW"}
{"assetId": "oSmjuzQO"}
{"assetId": "tGKEEyOf"}


Output Sample

The output is a merged message:

[
    {"assetId": "KNEeD968"},
    {"assetId": "fRZlKAwr"},
    {"assetId": "GQS2WVN9"},
    {"assetId": "U0QUTjew"},
    {"assetId": "JTy2vwzz"},
    {"assetId": "gSnPZup6"},
    {"assetId": "SoTwDKEW"},
    {"assetId": "oSmjuzQO"},
    {"assetId": "tGKEEyOf"}
]