pub trait WfClientExt:
WfHandleClient
+ Sized
+ Clone {
// Provided method
fn get_untyped_workflow_handle(
&self,
workflow_id: impl Into<String>,
run_id: impl Into<String>,
) -> WorkflowHandle<Self, Vec<Payload>> { ... }
}
Expand description
Additional methods for workflow clients
Provided Methods§
Sourcefn get_untyped_workflow_handle(
&self,
workflow_id: impl Into<String>,
run_id: impl Into<String>,
) -> WorkflowHandle<Self, Vec<Payload>>
fn get_untyped_workflow_handle( &self, workflow_id: impl Into<String>, run_id: impl Into<String>, ) -> WorkflowHandle<Self, Vec<Payload>>
Create an untyped handle for a workflow execution, which can be used to do things like
wait for that workflow’s result. run_id
may be left blank to target the latest run.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.