pub async fn execute_handler(
file: &str,
rc_clone: Sender<Event>,
cancellation_tx: Sender<()>,
) -> Result<(), Error>
Expand description
The execute_handler function takes a workflow ID, gets the workflow and creates a Job struct
from that workflow. Once we have a Job struct, the job is driven to completion by the run
function.