Forwarder (double)
Last updated
Last updated
[flow/Forwarder (double)]
Forwards both received signals in the order of the names of the ports. Used for two purposes:
Ensuring that any of a node's inputs may receive signals or be set as parameter.
Ensuring the order in which signals are sent.
Example a) param vs. signal:
2
(input) set to "B"
"A"@0 received via 1
(input)
"A"@0 sent via 1
(output)
"B"@0 sent via 2
(output)
Example b) signal order:
"B"@0 received via 2
(input)
"A"@0 received via 1
(input)
"A"@0 sent via 1
(output)
"B"@0 sent via 2
(output)
Keywords: order, signal order, parameter to signal
1: any
Receives signal or takes parameter to be sent out first.
2: any
Receives signal or takes parameter to be sent out second.
1: any
Forwards signal received via 1
(input).
2: any
Forwards signal received via 2
(input). Does not send before 1
(output).