Skip to content
Discussion options

You must be logged in to vote

Hi @pjirsa,

You're reading it correctly. In the current Python runtime, declarative YAML is converted to a graph workflow via WorkflowFactory -> DeclarativeWorkflowBuilder, which maps each action kind to a concrete executor class and wires graph edges.

ActionHandlers are a separate interpreter-style layer, mainly kept for non-graph compatibility and handler-focused tests; they are not the primary execution path for WorkflowFactory-built workflows. As a note: in the .NET implementation, there isn't an ActionHandler registry either: the equivalent dispatch is done by WorkflowActionVisitor, which instantiates concrete executors per action type. So for runtime behavior, the executor graph is …

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by moonbox3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment