Files
showbridge-docs/src/content/docs/modules/time/interval.mdx
T
2026-06-01 18:03:47 -05:00

22 lines
432 B
Plaintext

---
title: Interval
sidebar:
order: 2
---
import SchemaInfo from '../../../../components/SchemaInfo.astro';
The `time.interval` module emits a message at a specified duration. Sending any message to this module will reset the interval timer.
<SchemaInfo type="module" id="time.interval"/>
### Example snippet
Emits a message every 3 seconds
```yaml
- id: every3Secs
type: time.interval
params:
duration: 3000
```