> For the complete documentation index, see [llms.txt](https://doc.duaer.com/zh/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.duaer.com/zh/flow-logic/waiting.md).

# 在 Duaer 里用 Wait 暂停执行

在 Duaer 里，Wait 让这次执行停住，等到一段时间、某个时刻、一次 Webhook 或一次表单提交再继续。
## 四种继续方式

加上 Wait 之后，Resume 选一种：

- After Time Interval：等一段时长，例如 5 分钟。
- At Specified Time：等到填写的日期和时间。
- On Webhook Call：等到有人请求恢复地址。地址在运行时生成，表达式是 {{ $execution.resumeUrl }}。
- On Form Submitted：等到有人提交恢复表单。

停住的执行在执行记录里是等待。到点或收到请求后，同一条执行继续，不会新开一轮。

要人点批准时，优先用带 sendAndWait 的节点，例如邮件或 Slack，不必自己拼 Wait 的地址。
## Questions

### Duaer 的 Wait 结束时算新的一次执行吗？

不算。等待只是同一次执行停住，恢复后还是这一条，状态从等待变为继续跑。

