
Create New Workflow Environment
createWorkflow.RdConstructs a new workflow environment for managing, analyzing, and executing workflow steps. The returned object encapsulates the workflow state and exposes a public API for operations.
Details
The returned workflow environment contains the following methods:
df(): Returns a data frame of all steps in the workflowchangedAndOutdatedFiles(tree): Finds files that have changed or are outdatedcreateReexecutionPlan(): Generates a plan to rerun only outdated stepsrerunChangedAndOutdated(): Executes the re-execution planrerunAll(): Reruns all steps regardless of statusexecutePlan(plan): Executes a specific plan object
Internal state and helper functions are encapsulated and not exposed.