Skip to main content Skip to footer

Delay Documentation

Version: 1.0.1

Retrieved: 2025-10-09 15:15:51


Delay

The module will delay/pause the flow for a configured period of time before sending the message to the next module(s) in the flow.

This module is design to be in the middle of a flow.

Settings

Name Requirements Purpose Default
Delay Property String with length 0-64 [Optional] The property on the incoming message that contains the delay value to use.  
Delay Positive number The default delay used if `Delay Property` is not set or if the message does not contain the `Delay Property` 1000
Enable Looping Boolean If true the module will not dead lock if you loop back to a previous module in the flow `false`

Input

Any message.

Output

The same as input, but the output will also have the crosser object attached.

Example

# Settings

Delay: 10000
Delay Property: ""
Enable Looping: false

# Input

{
  "region": "europe",
  "id": "sensor123",
  "temperature": 34.5
}

# Output

{
  "region": "europe",
  "id": "sensor123",
  "temperature": 34.5,
  "crosser": {
    "success": true
  }
}