Compare commits

...
Author SHA1 Message Date
Shyju Krishnankutty ad4b732741 Adding ReflectExecutors method to Workflow. 2026-01-22 12:07:03 -08:00
@@ -51,6 +51,15 @@ public class Workflow
);
}
/// <summary>
/// Gets the collection of executor bindings, keyed by their ID.
/// </summary>
/// <returns>A copy of the executor bindings dictionary. Modifications do not affect the workflow.</returns>
public Dictionary<string, ExecutorBinding> ReflectExecutors()
{
return new Dictionary<string, ExecutorBinding>(this.ExecutorBindings);
}
/// <summary>
/// Gets the identifier of the starting executor of the workflow.
/// </summary>