FlowHandle
Handle for a running or finished flow execution.
Attributes
attributeexec_idstrExecution identifier for this flow run.
attributestatusExecutionStatusCurrent execution status.
Functions
func__init__(self, run, *, observed_started_at=None, analytics_metadata=None, track_terminal_if_finished=False) -> NoneInitialize a flow handle.
paramselfparamrunPipelineRunResponseInitial pipeline run response.
paramobserved_started_atfloat | None= NoneSDK-observed start time from time.perf_counter.
paramanalytics_metadatadict[str, Any] | None= NonePrivacy-safe metadata captured at submission time.
paramtrack_terminal_if_finishedbool= FalseEmit terminal analytics immediately when the initial run is already terminal.
Returns
Nonefuncwait(self) -> AnyBlock until execution finishes and return its result.
paramselfReturns
typing.AnyThe flow return value.
funcget(self) -> AnyGet the flow result without waiting.
paramselfReturns
typing.AnyThe flow return value.