mirror of
https://github.com/jwetzell/showbridge-docs.git
synced 2026-08-09 07:33:39 +00:00
22 lines
460 B
Plaintext
22 lines
460 B
Plaintext
---
|
|
title: Sleep
|
|
sidebar:
|
|
label: Sleep
|
|
order: 1
|
|
---
|
|
import SchemaInfo from '../../../../components/SchemaInfo.astro';
|
|
|
|
The `time.sleep` processor will sleep for the specified `duration` in milliseconds before passing the message to the next processor.
|
|
|
|
<SchemaInfo type="processor" id="time.sleep"/>
|
|
|
|
### Example
|
|
|
|
This would sleep for 5 seconds before passing the message to the next processor.
|
|
|
|
```yaml
|
|
- type: time.sleep
|
|
params:
|
|
duration: 5000
|
|
```
|