Fluxyn Docs
NodesUtility

Wait / Delay

Pauses the current flow for a set amount of time.

Utility

Use this when the next step should happen after a short delay instead of immediately.

When to use it

  • Delay a follow-up request.
  • Space out actions in the same flow.

Routing behavior

Pauses the current path and then continues on the connected downstream path.

Properties

PropertyTypeRequiredDetails
durationMs
durationMs
numberOptionalTime to wait in milliseconds

Common mistakes

  • Long waits can make debugging feel slower.
  • Use only when timing is important to the business logic.

Related nodes