File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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**
You can’t perform that action at this time.
0 commit comments