pub trait WorkflowEngine {
// Required method
fn schedule_run(&self, name: &str) -> Result<WorkflowRun>;
}Expand description
Engine trait for scheduling and managing workflow runs.
Required Methods§
Sourcefn schedule_run(&self, name: &str) -> Result<WorkflowRun>
fn schedule_run(&self, name: &str) -> Result<WorkflowRun>
Schedules a new workflow run by name.