Configuration.replaceStreamEnd()
Description
Appends a replaceStreamEnd filter to the current pipeline layout.
A replaceStreamEnd filter calls back user scripts to get a replacement for each StreamEnd event found in the input stream.
- INPUT - Any types of Events.
- OUTPUT - Any types of Events.
The user function will receive as parameter a StreamEnd event that is removed from the input stream. Whatever the function returns will be inserted into the output stream in place of the removed event. It can be an event or a Message, or an array of events or Messages. If the function returns nothing (null or undefined), no events will be inserted back into the stream.
You can also use a fixed replacement value instead of a function if the replacement is static.
Syntax
pipy().pipeline().replaceStreamEnd(event => transform(event))
Parameters
replaceStreamEnd(handler?)
A callback function that receives StreamEnd events passing through the filter and returns their replacements. The replacement can be an Event, a Message or an array of them.
The same Configuration object.