
Run a Step Resource
runStepResource.RdInitiates the execution of a step on the server. This function triggers asynchronous step execution, meaning the step's code and processes begin running on the improve platform without blocking your R session. Control returns immediately, allowing you to continue working or chain additional commands while the step runs in the background.
Details
The function performs a quick validation to ensure the repository is in an editable state, confirms the step exists, and then sends a command to the server to begin execution. The actual step execution happens asynchronously on the server, managed by the improve platform's execution infrastructure.
This function is commonly used in workflow orchestration scenarios where multiple
steps need to be executed sequentially or in parallel. For sequential workflows,
combine with finishRunResource to wait for completion before proceeding.
See also
finishRunResource to wait for step completion