Search K
Appearance
Appearance
The Wait node pauses the execution of the workflow for a specified duration in seconds before continuing to the next node. This allows for controlled delays between task executions when needed.
Use this node to introduce a delay within your workflow, such as:
Input | Type | Description |
---|---|---|
Duration to Wait in Seconds | Integer | The number of seconds to wait before completing the node execution. Example: 5 |
This node does not produce any outputs. It completes successfully after the configured delay.
Validation:
Delay Execution:
Thread.Sleep(waitTime)
for the specified duration.Error Handling:
⚠️ Important:
Thread.Sleep
which blocks the current thread; it does not use asynchronous delay. For very long delays or scalable wait implementations, consider designing alternative approaches.