Files
noodl-docs/nodes/utilities/delay/README.md
Eric Tuvesson 656e5fc8d2 chore: Upgrade Docusaurus from v2 to v3 (#52)
* chore: Upgrade Docusaurus from v2 to v3

* chore: Update "Test build" GH workflow

* fix: build

All markdown is processed as MDX

* fix: Broken links
2024-01-12 16:53:22 +01:00

40 lines
1.9 KiB
Markdown

---
hide_title: true
hide_table_of_contents: true
title: Delay node
---
{/*##head##*/}
# Delay
This node lets you delay <span className="ndl-signal">signals</span> by the specified amount of milliseconds.
<div className="ndl-image-with-background l">
![](/nodes/utilities/delay/delay_node.png)
</div>
{/*##head##*/}
## Inputs
| Signal | Description |
| ------------------------------------------- | --------------------------------------------------------------------- |
| <span className="ndl-signal">Start</span> | Starts the timer. Does nothing if the timer is already running. |
| <span className="ndl-signal">Restart</span> | Starts the timer. Restarts the timer if the timer is already running. |
| <span className="ndl-signal">Stop</span> | Stops the timer if it's running. Does nothing otherwise. |
| Data | Description |
| --------------------------------------------- | -------------------------------------------------------------------------------------------------- |
| <span className="ndl-data">Duration</span> | The duration of the timer in milliseconds. |
| <span className="ndl-data">Start Delay</span> | The delay before the timer starts after the _Start_ input is triggered. Specified in milliseconds. |
## Outputs
| Signal | Description |
| -------------------------------------------- | ------------------------------------------ |
| <span className="ndl-signal">Started</span> | Signal emitted when the timer starts. |
| <span className="ndl-signal">Finished</span> | Signal emitted when the timer is finished. |