Skip to content

Commit 0454942

Browse files
authored
Add ctx.parallel() to features and quick start (#299)
1 parent 8389853 commit 0454942

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ Your durable function extends `DurableHandler<I, O>` and implements `handleReque
3333
- `ctx.invoke()` – Invoke another Lambda function and wait for the result
3434
- `ctx.runInChildContext()` – Run an isolated child context with its own checkpoint log
3535
- `ctx.map()` – Apply a function to each item in a collection concurrently
36+
- `ctx.parallel()` - Run multiple operations concurrently with optional concurrency control
3637
- `ctx.waitForCondition()` – Poll a condition function until it signals done, suspending between polls
3738

3839
## Quick Start
@@ -96,6 +97,7 @@ See [Deploy Lambda durable functions with Infrastructure as Code](https://docs.a
9697
- [<u>Invoke</u>](docs/core/invoke.md) - Call other durable functions
9798
- [<u>Child Contexts</u>](docs/core/child-contexts.md) - Organize complex workflows into isolated units
9899
- [<u>Map</u>](docs/core/map.md) - Apply a function across a collection concurrently
100+
- [<u>Parallel</u>](docs/core/parallel.md) - Run multiple operations concurrently with optional concurrency control
99101
- [<u>Wait for Condition</u>](docs/core/wait-for-condition.md) - Poll a condition until it's met, with configurable backoff
100102

101103
**Examples**

0 commit comments

Comments
 (0)