Increments an internal counter every time a new message arrives and sends the new number to its output port.
Compile data in a single batch and send it at regular intervals or when a certain number of entries is reached.
Evaluates expression(s) and sends data to true or false port.
Loops over the incoming list and outputs a new message for each item.
Allows you to write JavaScript code to transform data. Executes the provided code when the component receives input.
Join multiple connections. Component resends every input message to its output port.
This JoinEach can be used in combination with Each component. The 'count' port has to receive the total number of messages that the component will wait for on the 'in' port. When that number of messages arrives, it will send an object with an array containing all the input messages to it's output port.
Component to set a variable based on input type and value.
Switch component with 5 configurable outputs (out1 - out5) and one default output (else). The default output else is used when the conditions for ports out1 - out5 are not met or are not defined.