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/service-bus-messaging/service-bus-java-how-to-use-topics-subscriptions.md
+6-14Lines changed: 6 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Get started with Azure Service Bus topics (Java)
3
3
description: This tutorial shows you how to send messages to Azure Service Bus topics and receive messages from topics' subscriptions using the Java programming language.
4
-
ms.date: 04/12/2023
4
+
ms.date: 02/28/2024
5
5
ms.topic: quickstart
6
6
ms.devlang: java
7
7
ms.custom: mode-api, devx-track-extended-java
@@ -86,7 +86,6 @@ Update the `pom.xml` file to add a dependency to the Azure Service Bus package.
86
86
importcom.azure.messaging.servicebus.*;
87
87
importcom.azure.identity.*;
88
88
89
-
importjava.util.concurrent.CountDownLatch;
90
89
importjava.util.concurrent.TimeUnit;
91
90
importjava.util.Arrays;
92
91
importjava.util.List;
@@ -97,7 +96,6 @@ Update the `pom.xml` file to add a dependency to the Azure Service Bus package.
97
96
```java
98
97
importcom.azure.messaging.servicebus.*;
99
98
100
-
importjava.util.concurrent.CountDownLatch;
101
99
importjava.util.concurrent.TimeUnit;
102
100
importjava.util.Arrays;
103
101
importjava.util.List;
@@ -311,8 +309,6 @@ In this section, you add code to retrieve messages from a subscription to the to
0 commit comments