Skip to content

Commit 4144194

Browse files
committed
Address feedback per PM
1 parent 4879163 commit 4144194

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
17.9 KB
Loading

articles/logic-apps/send-related-messages-sequential-convoy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ services: logic-apps
55
ms.suite: integration
66
ms.reviewer: apseth, divswa, logicappspm
77
ms.topic: conceptual
8-
ms.date: 05/22/2020
8+
ms.date: 05/29/2020
99
---
1010

1111
# Send related messages in order by using a sequential convoy in Azure Logic Apps with Azure Service Bus
1212

13-
When you need to send correlated messages in a specific order, you can follow the [*sequential convoy* pattern](https://docs.microsoft.com/azure/architecture/patterns/sequential-convoy) when using [Azure Logic Apps](../logic-apps/logic-apps-overview.md) by using the [Azure Service Bus connector](../connectors/connectors-create-api-servicebus.md). Correlated messages have a property that defines the relationship between those messages, such as the ID for the [session](../service-bus-messaging/message-sessions.md) in Service Bus. For example, suppose that you have 10 messages for a session named "Session 1", and you have 5 messages for a session named "Session 2". You can create a logic app that first processes all the messages for "Session 1" in a single trigger run and then all the messages for "Session 2" in the next trigger run.
13+
When you need to send correlated messages in a specific order, you can follow the [*sequential convoy* pattern](https://docs.microsoft.com/azure/architecture/patterns/sequential-convoy) when using [Azure Logic Apps](../logic-apps/logic-apps-overview.md) by using the [Azure Service Bus connector](../connectors/connectors-create-api-servicebus.md). Correlated messages have a property that defines the relationship between those messages, such as the ID for the [session](../service-bus-messaging/message-sessions.md) in Service Bus. For example, suppose that you have 10 messages for a session named "Session 1", and you have 5 messages for a session named "Session 2" that are all sent to the same [Service Bus queue](../service-bus-messaging/service-bus-queues-topics-subscriptions.md). You can create a logic app that processes messages from the queue so that all messages from "Session 1" are handled by a single trigger run and all messages from "Session 2" are handled by the next trigger run.
1414

1515
![General sequential convoy pattern](./media/send-related-messages-sequential-convoy/sequential-convoy-pattern-general.png)
1616

0 commit comments

Comments
 (0)