Await for each
Iterates over an asynchronous stream of items.
Await foreach processes items as they become available, and if items are produced asynchronously with independent completion times, the observed order can appear random.
The items source is expected to be of type IAsyncEnumerable
Read more about async enumerables here
Properties
| Name | Type | Description |
|---|---|---|
| Title | Optional | The title or name of the action. |
| Items | Required | The asynchronous collection of items to iterate over. |
| Loop Variable | Optional | The variable that holds the current item in each iteration. |
| Description | Optional | Additional notes or comments about the action or configuration. |