to allow support for ARM architecture and because the uamqp library wouldn't be supported after 2025 anyway.
It seems like this library is also 15/20% faster than the original one.
In this library we are missing the body type which is automatically able to detect the type passed and to the conversion so we need to pass a binary like:
This library is also using typing_extensions as dependency which needs to be included in your application (uamqp is not used anymore and can be removed).
This closes #183
The uamqp library has been replaced with the code used here:
https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/servicebus/azure-servicebus/azure/servicebus/_pyamqp
to allow support for ARM architecture and because the uamqp library wouldn't be supported after 2025 anyway.
It seems like this library is also 15/20% faster than the original one.
In this library we are missing the body type which is automatically able to detect the type passed and to the conversion so we need to pass a binary like:
Also if you were previously using amqp fields like Properties this are now imported from rstream directly:
Before
Now:
This library is also using typing_extensions as dependency which needs to be included in your application (uamqp is not used anymore and can be removed).