
Create a new workflow object
createWorkflow.RdThis function constructs a new workflow environment for managing and executing steps. The returned object exposes only the public API for workflow operations.
Details
The workflow object provides methods to:
List all steps as a data frame (
df)Find changed and outdated files (
changedAndOutdatedFiles)Create a re-execution plan for outdated steps (
createReexecutionPlan)Rerun all changed and outdated steps (
rerunChangedAndOutdated)Execute a given execution plan (
executePlan)
Internal state and helper functions are encapsulated and not exposed.