You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/logic-apps/logic-apps-batch-process-send-receive-messages.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ ms.suite: integration
17
17
To send and process messages together in a specific way as groups,
18
18
you can create a batching solution that collects messages into a
19
19
*batch* until your specified criteria are met for releasing and
20
-
and processing the batched messages. Batching can reduce how often
20
+
processing the batched messages. Batching can reduce how often
21
21
your logic app processes messages. This article shows how to build
22
22
a batching solution by creating two logic apps within the same
23
23
Azure subscription, Azure region, and following this specific order:
@@ -90,8 +90,8 @@ Select this trigger: **Batch messages**
90
90
91
91
| Property | Description |
92
92
|----------|-------------|
93
-
|**Batch Mode**| - **Inline**: For when you define a single release criteria configuration inside the batch trigger <br>- **Integration Account**: For when you define multiple release criteria configurations through an integration account |
94
-
|**Batch Name**| The name for your batch, which is "TestBatch" in this example. Applies only to **Inline** batch mode.|
93
+
|**Batch Mode**| - **Inline**: For defining release criteria inside the batch trigger <br>- **Integration Account**: For defining multiple release criteria configurations through an integration account |
94
+
|**Batch Name**| The name for your batch, which is "TestBatch" in this example, and applies only to **Inline** batch mode |
95
95
|**Release Criteria**| Applies only to **Inline** batch mode and specifies the criteria to meet before processing each batch: <p>- **Message count based**: The number of messages to collect in the batch, for example, 10 messages <br>- **Size based**: The maximum batch size in bytes, for example, 100 MB <br>- **Schedule based**: The interval and frequency between batch releases, for example, 10 minutes. You can also specify a start date and time. <br>- **Select all**: Use all the specified criteria. |
96
96
|||
97
97
@@ -148,8 +148,8 @@ Select this trigger: **Batch messages**
148
148
* In the **Body** box, when the dynamic content list appears,
149
149
select the **Message Id** field.
150
150
151
-
A **For each** loop automatically appears around the send
152
-
email action because that action accepts an array as input.
151
+
The Logic Apps Designer automatically adds a "For each" loop around
152
+
the send email action because that action accepts an array as input.
153
153
This loop sends an email for each message in the batch.
0 commit comments