Skip to content

Commit fd60179

Browse files
authored
Merge pull request #216300 from spelluru/sbustopicqs1028
freshness review, update
2 parents a1d5e82 + 4e53540 commit fd60179

File tree

9 files changed

+7
-7
lines changed

9 files changed

+7
-7
lines changed
Loading
Loading
Loading
Loading
-1.43 KB
Loading
2.57 KB
Loading

articles/service-bus-messaging/includes/service-bus-create-namespace-portal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
author: spelluru
66
ms.service: service-bus-messaging
77
ms.topic: include
8-
ms.date: 10/20/2022
8+
ms.date: 10/28/2022
99
ms.author: spelluru
1010
ms.custom: include file
1111
---
@@ -55,6 +55,6 @@ A client can use the connection string to connect to the Service Bus namespace.
5555
3. On the **Shared access policies** page, select **RootManageSharedAccessKey**.
5656
4. In the **Policy: RootManageSharedAccessKey** window, select the copy button next to **Primary Connection String**, to copy the connection string to your clipboard for later use. Paste this value into Notepad or some other temporary location.
5757

58-
:::image type="content" source="./media/service-bus-create-namespace-portal/connection-string.png" alt-text="Screenshot shows an S A S policy called RootManageSharedAccessKey, which includes keys and connection strings.":::
58+
:::image type="content" source="./media/service-bus-create-namespace-portal/connection-string.png" lightbox="./media/service-bus-create-namespace-portal/connection-string.png" alt-text="Screenshot shows an S A S policy called RootManageSharedAccessKey, which includes keys and connection strings.":::
5959

6060
You can use this page to copy primary key, secondary key, primary connection string, and secondary connection string.

articles/service-bus-messaging/includes/service-bus-create-topics-three-subscriptions-portal.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
author: spelluru
66
ms.service: service-bus-messaging
77
ms.topic: include
8-
ms.date: 04/26/2022
8+
ms.date: 10/28/2022
99
ms.author: spelluru
1010
ms.custom: include file
1111
---
@@ -16,12 +16,12 @@
1616
4. Enter a **name** for the topic. Leave the other options with their default values.
1717
5. Select **Create**.
1818

19-
:::image type="content" source="./media/service-bus-create-topics-subscriptions-portal/create-topic.png" alt-text="Screenshot of the Create topic page.":::
19+
:::image type="content" source="./media/service-bus-create-topics-subscriptions-portal/create-topic.png" lightbox="./media/service-bus-create-topics-subscriptions-portal/create-topic.png" alt-text="Screenshot of the Create topic page.":::
2020

2121
## Create subscriptions to the topic
2222
1. Select the **topic** that you created in the previous section.
2323

24-
:::image type="content" source="./media/service-bus-create-topics-subscriptions-portal/select-topic.png" alt-text="Screenshot of the Topics page with your topic selected.":::
24+
:::image type="content" source="./media/service-bus-create-topics-subscriptions-portal/select-topic.png" lightbox="./media/service-bus-create-topics-subscriptions-portal/select-topic.png" alt-text="Screenshot of the Topics page with your topic selected.":::
2525
2. On the **Service Bus Topic** page, select **Subscriptions** from the left menu, and then select **+ Subscription** on the toolbar.
2626

2727
:::image type="content" source="./media/service-bus-create-topics-subscriptions-portal/add-subscription-button.png" alt-text="Screenshot of the Subscriptions page with the Add subscription button selected.":::

articles/service-bus-messaging/service-bus-quickstart-topics-subscriptions-portal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Use the Azure portal to create Service Bus topics and subscriptions
33
description: 'Quickstart: In this quickstart, you learn how to create a Service Bus topic and subscriptions to that topic by using the Azure portal.'
44
author: spelluru
55
ms.author: spelluru
6-
ms.date: 09/15/2021
6+
ms.date: 10/28/2022
77
ms.topic: quickstart
88
ms.custom: mode-ui
99
#Customer intent: In a retail scenario, how do I update inventory assortment and send a set of messages from the back office to the stores?
@@ -16,7 +16,7 @@ In this quickstart, you use the Azure portal to create a Service Bus topic and t
1616
Service Bus topics and subscriptions support a *publish/subscribe* messaging communication model. When using topics and subscriptions, components of a distributed application do not communicate directly with
1717
each other; instead they exchange messages via a topic, which acts as an intermediary.
1818

19-
![TopicConcepts](./media/service-bus-java-how-to-use-topics-subscriptions/sb-topics-01.png)
19+
:::image type="content" source="./media/service-bus-java-how-to-use-topics-subscriptions/sb-topics-01.png" alt-text="Image showing how topics and subscriptions work.":::
2020

2121
In contrast with Service Bus queues, in which each message is processed by a single consumer, topics and subscriptions provide a one-to-many form of communication, using a publish/subscribe pattern. It is possible to
2222
register multiple subscriptions to a topic. When a message is sent to a topic, it is then made available to each subscription to handle/process independently. A subscription to a topic resembles a virtual queue that receives copies of the messages that were sent to the topic. You can optionally register filter rules for a topic on a per-subscription basis, which allows you to filter or restrict which messages to a topic are received by which topic subscriptions.

0 commit comments

Comments
 (0)