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
# Azure Service Bus client library for Python - Version 7.6.0
13
+
# Azure Service Bus client library for Python - Version 7.6.1
14
14
15
15
16
16
Azure Service Bus is a high performance cloud-managed messaging service for providing real-time and fault-tolerant communication between distributed senders and receivers.
@@ -24,7 +24,7 @@ Use the Service Bus client library for Python to communicate between application
24
24
* Send and receive messages within your Service Bus channels.
25
25
* Utilize message locks, sessions, and dead letter functionality to implement complex messaging patterns.
**NOTE**: If you are using version 0.50 or lower and want to migrate to the latest version
30
30
of this package please look at our [migration guide to move from Service Bus V0.50 to Service Bus V7][migration_guide].
@@ -98,9 +98,9 @@ To interact with these resources, one should be familiar with the following SDK
98
98
99
99
*[ServiceBusClient][client_reference]: This is the object a user should first initialize to connect to a Service Bus Namespace. To interact with a queue, topic, or subscription, one would spawn a sender or receiver off of this client.
100
100
101
-
*[ServiceBusSender][sender_reference]: To send messages to a Queue or Topic, one would use the corresponding `get_queue_sender` or `get_topic_sender` method off of a `ServiceBusClient` instance as seen [here](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.0/sdk/servicebus/azure-servicebus/samples/sync_samples/send_queue.py).
101
+
*[ServiceBusSender][sender_reference]: To send messages to a Queue or Topic, one would use the corresponding `get_queue_sender` or `get_topic_sender` method off of a `ServiceBusClient` instance as seen [here](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.1/sdk/servicebus/azure-servicebus/samples/sync_samples/send_queue.py).
102
102
103
-
*[ServiceBusReceiver][receiver_reference]: To receive messages from a Queue or Subscription, one would use the corresponding `get_queue_receiver` or `get_subscription_receiver` method off of a `ServiceBusClient` instance as seen [here](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.0/sdk/servicebus/azure-servicebus/samples/sync_samples/receive_queue.py).
103
+
*[ServiceBusReceiver][receiver_reference]: To receive messages from a Queue or Subscription, one would use the corresponding `get_queue_receiver` or `get_subscription_receiver` method off of a `ServiceBusClient` instance as seen [here](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.1/sdk/servicebus/azure-servicebus/samples/sync_samples/receive_queue.py).
104
104
105
105
*[ServiceBusMessage][message_reference]: When sending, this is the type you will construct to contain your payload. When receiving, this is where you will access the payload.
106
106
@@ -117,7 +117,7 @@ The following sections provide several code snippets covering some of the most c
117
117
118
118
To perform management tasks such as creating and deleting queues/topics/subscriptions, please utilize the azure-mgmt-servicebus library, available [here][servicebus_management_repository].
119
119
120
-
Please find further examples in the [samples](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.0/sdk/servicebus/azure-servicebus/samples) directory demonstrating common Service Bus scenarios such as sending, receiving, session management and message handling.
120
+
Please find further examples in the [samples](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.1/sdk/servicebus/azure-servicebus/samples) directory demonstrating common Service Bus scenarios such as sending, receiving, session management and message handling.
121
121
122
122
### Send messages to a queue
123
123
> **NOTE:** see reference documentation [here][send_reference].
@@ -144,7 +144,7 @@ with ServiceBusClient.from_connection_string(connstr) as client:
144
144
145
145
> **NOTE:** A message may be scheduled for delayed delivery using the `ServiceBusSender.schedule_messages()` method, or by specifying `ServiceBusMessage.scheduled_enqueue_time_utc` before calling `ServiceBusSender.send_messages()`
146
146
147
-
> For more detail on scheduling and schedule cancellation please see a sample [here](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.0/sdk/servicebus/azure-servicebus/samples/sync_samples/schedule_messages_and_cancellation.py).
147
+
> For more detail on scheduling and schedule cancellation please see a sample [here](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.1/sdk/servicebus/azure-servicebus/samples/sync_samples/schedule_messages_and_cancellation.py).
148
148
149
149
### Receive messages from a queue
150
150
@@ -303,7 +303,7 @@ with ServiceBusClient.from_connection_string(connstr) as client:
303
303
304
304
#### [DeadLetter][deadletter_reference]
305
305
306
-
Transfer the message from the primary queue into a special "dead-letter sub-queue" where it can be accessed using the `ServiceBusClient.get_<queue|subscription>_receiver` function with parameter `sub_queue=ServiceBusSubQueue.DEAD_LETTER` and consumed from like any other receiver. (see sample [here](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.0/sdk/servicebus/azure-servicebus/samples/sync_samples/receive_deadlettered_messages.py))
306
+
Transfer the message from the primary queue into a special "dead-letter sub-queue" where it can be accessed using the `ServiceBusClient.get_<queue|subscription>_receiver` function with parameter `sub_queue=ServiceBusSubQueue.DEAD_LETTER` and consumed from like any other receiver. (see sample [here](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.1/sdk/servicebus/azure-servicebus/samples/sync_samples/receive_deadlettered_messages.py))
307
307
308
308
```Python
309
309
from azure.servicebus import ServiceBusClient
@@ -322,7 +322,7 @@ with ServiceBusClient.from_connection_string(connstr) as client:
322
322
#### [Defer][defer_reference]
323
323
324
324
Defer is subtly different from the prior settlement methods. It prevents the message from being directly received from the queue
325
-
by setting it aside such that it must be received by sequence number in a call to `ServiceBusReceiver.receive_deferred_messages` (see sample [here](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.0/sdk/servicebus/azure-servicebus/samples/sync_samples/receive_deferred_message_queue.py))
325
+
by setting it aside such that it must be received by sequence number in a call to `ServiceBusReceiver.receive_deferred_messages` (see sample [here](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.1/sdk/servicebus/azure-servicebus/samples/sync_samples/receive_deferred_message_queue.py))
326
326
327
327
```Python
328
328
from azure.servicebus import ServiceBusClient
@@ -475,7 +475,7 @@ Please view the [exceptions reference docs][exception_reference] for detailed de
475
475
476
476
### More sample code
477
477
478
-
Please find further examples in the [samples](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.0/sdk/servicebus/azure-servicebus/samples) directory demonstrating common Service Bus scenarios such as sending, receiving, session management and message handling.
478
+
Please find further examples in the [samples](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.1/sdk/servicebus/azure-servicebus/samples) directory demonstrating common Service Bus scenarios such as sending, receiving, session management and message handling.
479
479
480
480
### Additional documentation
481
481
@@ -485,7 +485,7 @@ For more extensive documentation on the Service Bus service, see the [Service Bu
485
485
486
486
For users seeking to perform management operations against ServiceBus (Creating a queue/topic/etc, altering filter rules, enumerating entities)
487
487
please see the [azure-mgmt-servicebus documentation][service_bus_mgmt_docs] for API documentation. Terse usage examples can be found
488
-
[here](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.0/sdk/servicebus/azure-mgmt-servicebus/tests) as well.
488
+
[here](https://github.com/Azure/azure-sdk-for-python/tree/azure-servicebus_7.6.1/sdk/servicebus/azure-mgmt-servicebus/tests) as well.
0 commit comments