NWayPassthrough¶
Pass the input data through to the output.
Can be used to enforce sequential dependencies. Specifically, all inputs that come in before the node are evaluated before anything that comes after the node, and furthermore, inputs are evaluated in the order in which they are wired into this node. Optionally, specify the number of inputs which must contain data in order for all streams to be passed through (on each tick). This can be used to cause a branch of a pipeline to wait until multiple inputs are being received (i.e., signal data and marker stream) before passing the data through. Version 1.1.0
Ports/Properties¶
data1¶
Data 1.
data2¶
Data 2.
data3¶
Data 3.
data4¶
Data 4.
data5¶
Data 5.
data6¶
Data 6.
data7¶
Data 7.
data8¶
Data 8.
data9¶
Data 9.
required_inputs¶
Required number of inputs. If data is not received in at least this many inputs, None will be output for this tick.
allow_empty_packets¶
When determining whether the number of required inputs is satisfied, count incoming packets that have no data as valid streams. Set this to True if you want to allow Marker streams through as they are likely to intermittently have empty data packets.
set_breakpoint¶
Set a breakpoint on this node. If this is enabled, your debugger (if one is attached) will trigger a breakpoint.
metadata¶
User-definable meta-data associated with the node. Usually reserved for technical purposes.