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: sdk/servicebus/azure-messaging-servicebus/src/main/java/com/azure/messaging/servicebus/ServiceBusClientBuilder.java
+19-18Lines changed: 19 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -277,7 +277,7 @@ public ServiceBusSenderClientBuilder sender() {
277
277
}
278
278
279
279
/**
280
-
* A new instance of {@link ServiceBusReceiverClientBuilder} used to configure Service Bus message consumers.
280
+
* A new instance of {@link ServiceBusReceiverClientBuilder} used to configure Service Bus message receivers.
281
281
*
282
282
* @return A new instance of {@link ServiceBusReceiverClientBuilder}.
283
283
*/
@@ -287,7 +287,7 @@ public ServiceBusReceiverClientBuilder receiver() {
287
287
288
288
/**
289
289
* A new instance of {@link ServiceBusSessionReceiverClientBuilder} used to configure <b>session aware</b> Service
290
-
* Bus message consumers.
290
+
* Bus message receivers.
291
291
*
292
292
* @return A new instance of {@link ServiceBusSessionReceiverClientBuilder}.
293
293
*/
@@ -788,9 +788,9 @@ public ServiceBusSessionProcessorClientBuilder disableAutoComplete() {
788
788
789
789
/**
790
790
* Creates a <b>session-aware</b> Service Bus processor responsible for reading
791
-
* {@link ServiceBusReceivedMessage messages} from a specific queue or topic.
791
+
* {@link ServiceBusReceivedMessage messages} from a specific queue or subscription.
792
792
*
793
-
* @return An new {@link ServiceBusProcessorClient} that receives messages from a queue or topic.
793
+
* @return An new {@link ServiceBusProcessorClient} that receives messages from a queue or subscription.
794
794
* @throws IllegalStateException if {@link #queueName(String) queueName} or {@link #topicName(String)
795
795
* topicName} are not set or, both of these fields are set. It is also thrown if the Service Bus {@link
796
796
* #connectionString(String) connectionString} contains an {@code EntityPath} that does not match one set in
@@ -950,9 +950,9 @@ public ServiceBusSessionReceiverClientBuilder topicName(String topicName) {
950
950
951
951
/**
952
952
* Creates an <b>asynchronous</b>, <b>session-aware</b> Service Bus receiver responsible for reading {@link
953
-
* ServiceBusMessage messages} from a specific queue or topic.
953
+
* ServiceBusMessage messages} from a specific queue or subscription.
954
954
*
955
-
* @return An new {@link ServiceBusReceiverAsyncClient} that receives messages from a queue or topic.
955
+
* @return An new {@link ServiceBusReceiverAsyncClient} that receives messages from a queue or subscription.
956
956
* @throws IllegalStateException if {@link #queueName(String) queueName} or {@link #topicName(String)
957
957
* topicName} are not set or, both of these fields are set. It is also thrown if the Service Bus {@link
958
958
* #connectionString(String) connectionString} contains an {@code EntityPath} that does not match one set in
Copy file name to clipboardExpand all lines: sdk/servicebus/azure-messaging-servicebus/src/main/java/com/azure/messaging/servicebus/models/AbandonOptions.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -14,9 +14,9 @@ public final class AbandonOptions extends SettlementOptions {
14
14
privateMap<String, Object> propertiesToModify;
15
15
16
16
/**
17
-
* Gets the message properties to modify while putting put message in dead letter sub-queue.
17
+
* Gets the message properties to modify while abandoning the message.
18
18
*
19
-
* @return The message properties to modify while putting message in dead letter sub-queue.
19
+
* @return The message properties to modify while abandoning the message.
Copy file name to clipboardExpand all lines: sdk/servicebus/azure-messaging-servicebus/src/main/java/com/azure/messaging/servicebus/models/DeferOptions.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ public final class DeferOptions extends SettlementOptions {
14
14
privateMap<String, Object> propertiesToModify;
15
15
16
16
/**
17
-
* Sets the message properties to modify while abandoning message.
17
+
* Sets the message properties to modify while deferring the message.
18
18
*
19
19
* @param propertiesToModify Message properties to modify.
20
20
*
@@ -26,9 +26,9 @@ public DeferOptions setPropertiesToModify(Map<String, Object> propertiesToModify
26
26
}
27
27
28
28
/**
29
-
* Gets the message properties to modify while putting put message in dead letter sub-queue.
29
+
* Gets the message properties to modify while deferring the message.
30
30
*
31
-
* @return The message properties to modify while putting message in dead letter sub-queue.
31
+
* @return The message properties to modify while deferring the message.
Copy file name to clipboardExpand all lines: sdk/servicebus/azure-messaging-servicebus/src/main/java/com/azure/messaging/servicebus/models/SubQueue.java
0 commit comments