Skip to main content

WorkflowEngine

Trait WorkflowEngine 

Source
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§

Source

fn schedule_run(&self, name: &str) -> Result<WorkflowRun>

Schedules a new workflow run by name.

Implementors§