Skip to content

Commit d3e4de0

Browse files
authored
Enhance timers documentation with durability details
Clarify that timers are durable and survive restarts.
1 parent f60162f commit d3e4de0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/features/timers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ sidebar_position: 3
44

55
# Timers
66

7-
Laravel Workflow provides the ability to suspend the execution of a workflow and resume at a later time. This can be useful for implementing delays, retry logic, or timeouts.
7+
Laravel Workflow provides the ability to suspend the execution of a workflow and resume at a later time. These are durable timers, meaning they survive restarts and failures while remaining consistent with workflow replay semantics. This can be useful for implementing delays, retry logic, or timeouts.
88

99
To use timers, you can use the `WorkflowStub::timer($seconds)` method within your workflow. This method returns a `Promise` that will be resolved after the specified number of seconds have passed.
1010

0 commit comments

Comments
 (0)