Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions docs/libraries/workflow/GOTCHAS.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,3 @@ the internal location.
> **\*** Even if they did know about each other via atomics, there is no guarantee of consistency from
> `buffer_unordered`. Preemptively incrementing the location ensures consistency regardless of the order or
> completion time of the futures.

## Loops

TODO
6 changes: 5 additions & 1 deletion docs/libraries/workflow/LOOPS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,8 @@ TODO

https://docs.temporal.io/develop/go/continue-as-new

TODO
Continue As New effectively wipes the entire history of the workflow, allowing you to start from scratch when
needed.

With loops, only the history of previous completed iterations of the loop is forgotten. This is because it is
assumed there are no side effects from the loop, meaning previous iterations have no effect on the workflow.
Loading