loadExecution method
Loads a workflow execution by its ID.
Returns null if not found.
Implementation
@override
Future<WorkflowExecution?> loadExecution(
String workflowExecutionId,
) async {
return _executions[workflowExecutionId];
}
Loads a workflow execution by its ID.
Returns null if not found.
@override
Future<WorkflowExecution?> loadExecution(
String workflowExecutionId,
) async {
return _executions[workflowExecutionId];
}