Skip to content
Merged
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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ Your durable function extends `DurableHandler<I, O>` and implements `handleReque
- `ctx.invoke()` – Invoke another Lambda function and wait for the result
- `ctx.runInChildContext()` – Run an isolated child context with its own checkpoint log
- `ctx.map()` – Apply a function to each item in a collection concurrently
- `ctx.parallel()` - Run multiple operations concurrently with optional concurrency control
- `ctx.waitForCondition()` – Poll a condition function until it signals done, suspending between polls

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

**Examples**
Expand Down
Loading