Skip to content

Commit

Permalink
Adding proposed concluding thoughts
Browse files Browse the repository at this point in the history
Co-authored-by: Chris Gillum <[email protected]>
Signed-off-by: Whit Waldo <[email protected]>
  • Loading branch information
WhitWaldo and cgillum authored May 7, 2024
1 parent d45dbc5 commit 7ac6ded
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -624,6 +624,8 @@ await context.CallActivityAsync("PostResults", sum);
{{< /tabs >}}
Limiting the degree of concurrency in this way can be useful for limiting contention against shared resources. For example, if the activities need to call into external resources that have their own concurrency limits, like a databases or external APIs, it can be useful to ensure that no more than a specified number of activities call that resource concurrently.
## Async HTTP APIs
Asynchronous HTTP APIs are typically implemented using the [Asynchronous Request-Reply pattern](https://learn.microsoft.com/azure/architecture/patterns/async-request-reply). Implementing this pattern traditionally involves the following:
Expand Down

0 comments on commit 7ac6ded

Please sign in to comment.