Closed yunhaoling closed 8 months ago
Hi @yunhaoling, we deeply appreciate your input into this project. Regrettably, this issue has remained inactive for over 2 years, leading us to the decision to close it. We've implemented this policy to maintain the relevance of our issue queue and facilitate easier navigation for new contributors. If you still believe this topic requires attention, please feel free to create a new issue, referencing this one. Thank you for your understanding and ongoing support.
https://github.com/Azure/azure-uamqp-python/pull/283#discussion_r797049404
so far the async implementation is not using
asyncio.gather
for Mutiple sessions/links. The implementation strategy in pyamqp is still the same as the uamqp one, we assume one sender/receiver will own a single conneciton/session/link. The async implementation is pretty similar to the sync version in which we do a for loop and raise on the first error we encountered.however, if we want to connection/session sharing among multiple senders and receivers, we need to take the concurrency into account.