Configuration.split()
Description
Appends a split filter to the current pipeline layout.
A split filter splits an input Message into multiple Messages by a given separator.
- INPUT - Messages to split.
- OUTPUT - Messages splitted from the input.
Syntax
pipy().pipeline().split(separator)pipy().pipeline().split(() => getSeparator())
Parameters
split(separator)
separator
A string or a Data object as the separator, or a function that returns that.
Return Value
The same Configuration object.