We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We are currently scheduling commands by setting Message.ScheduledEnqueueTimeUtc. https://docs.microsoft.com/en-us/dotnet/api/microsoft.servicebus.messaging.brokeredmessage.scheduledenqueuetimeutc?view=azure-dotnet#Microsoft_ServiceBus_Messaging_BrokeredMessage_ScheduledEnqueueTimeUtc
Message.ScheduledEnqueueTimeUtc
I think we should be scheduling messages using the QueueClient.ScheduleMessageAsync(…) https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.servicebus.queueclient.schedulemessageasync?view=azure-dotnet
QueueClient.ScheduleMessageAsync(…)
This means that we would be able to cancel the scheduled message: https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.servicebus.queueclient.cancelscheduledmessageasync?view=azure-dotnet
Why is this helpful?
The text was updated successfully, but these errors were encountered:
@ilivewithian What do you think?
Sorry, something went wrong.
Ah, yes I think that's worth doing. I'm not near a laptop at the moment, but I think it's a nice improvement.
No branches or pull requests
We are currently scheduling commands by setting
Message.ScheduledEnqueueTimeUtc
.https://docs.microsoft.com/en-us/dotnet/api/microsoft.servicebus.messaging.brokeredmessage.scheduledenqueuetimeutc?view=azure-dotnet#Microsoft_ServiceBus_Messaging_BrokeredMessage_ScheduledEnqueueTimeUtc
I think we should be scheduling messages using the
QueueClient.ScheduleMessageAsync(…)
https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.servicebus.queueclient.schedulemessageasync?view=azure-dotnet
This means that we would be able to cancel the scheduled message:
https://docs.microsoft.com/en-us/dotnet/api/microsoft.azure.servicebus.queueclient.cancelscheduledmessageasync?view=azure-dotnet
Why is this helpful?
The text was updated successfully, but these errors were encountered: