Reputation: 311
Im am using Python to develop a integration that read messages from different Azure Service Bus topics and queues. But I have an issue when scheduling messages. I am not able to peek the scheduled messages. I want to peek them, and then either complete or leave them unread, until scheduled-time. I have tried to peek on both queue and topic, and I cannot find any documentation on how to peek a scheduled message on either of them. Anyone managed to do this? Should be a very common use-case. Not found anything on doing it by standard REST-calls either.
Upvotes: 2
Views: 1011
Reputation: 21
Have you tried peeking them by sequence number? https://learn.microsoft.com/en-us/dotnet/api/microsoft.azure.servicebus.core.messagereceiver.peekbysequencenumberasync?view=azure-dotnet
Upvotes: 1