start_time
Applicability
Product |
Supported |
|---|---|
√ |
|
√ |
|
x |
|
x |
|
x |
Function Description
Reads and sets the start time of FlowInfo in attribute mode.
Prototype
1 2 3 4 | @property def start_time(self) @start_time.setter def start_time(self, new_value) |
Parameters
Parameter |
Data Type |
Description |
|---|---|---|
new_value |
int |
Start time of the FlowInfo to be set. |
Returns
Attribute of start_time
Examples
1 2 3 4 5 | import dataflow as df graph = df.FlowGraph(...) flowinfo = FlowInfo(...) flowinfo.start_time = 100 print(flowinfo.start_time) |
Constraints
None
Parent topic: dataflow.FlowInfo