CopyData¶
Copy the given data.
This node is for testing and debugging purposes. The node can skip None values, and optionally skip empty values, which means that these values will not be output, but rather the most recent value that was not skipped. The node can also optionally record a history of the (non-skipped) data values that it received. (This node will copy whatever data type that is wired into from the preceeding node.) Version 1.1.0
Ports/Properties¶
data¶
Data to process.
- verbose name: Data
- default value: None
- port type: DataPort
- value type: object (can be None)
- data direction: INOUT
history¶
List of collected data packets. Only if store_history was enabled.
- verbose name: History
- default value: []
- port type: ListPort
- value type: list (can be None)
ignore_none¶
Ignore None values. If a None value comes in, the previous data value will be retained.
- verbose name: Ignore None
- default value: False
- port type: BoolPort
- value type: bool (can be None)
ignore_empty¶
Ignore empty values. If an empty packet comes in, the previous data value will be retained.
- verbose name: Ignore Empty
- default value: False
- port type: BoolPort
- value type: bool (can be None)
store_history¶
Store history of incoming data.
- verbose name: Store History
- default value: False
- port type: BoolPort
- value type: bool (can be None)
set_breakpoint¶
Set a breakpoint on this node. If this is enabled, your debugger (if one is attached) will trigger a breakpoint.
- verbose name: Set Breakpoint (Debug Only)
- default value: False
- port type: BoolPort
- value type: bool (can be None)
metadata¶
User-definable meta-data associated with the node. Usually reserved for technical purposes.
- verbose name: Metadata
- default value: {}
- port type: DictPort
- value type: dict (can be None)