Hi,
I've got some question about Azure Service Bus functionalities.
1. If I use PartitionKey in my Topic that will handle the order of the messages in that specific partition. I've found some articles about the problem ( https://github.com/Azure/azure-content/blob/master/articles/service-bus/service-bus-partitioning.md) but i just want to use simple Client.OnMessage method to handle the messages. Is there a way to handle this it a clear way or I need to use Session based message handling?
2. Is there a way to replace / update a message in the Service Bus if the MessageId equals. Basically, if there is a message in service bus that get an update from my application and client not handled yet I just want to update that message. I know that is not a normal way of doing things in service bus architecture.
I've got some question about Azure Service Bus functionalities.
1. If I use PartitionKey in my Topic that will handle the order of the messages in that specific partition. I've found some articles about the problem ( https://github.com/Azure/azure-content/blob/master/articles/service-bus/service-bus-partitioning.md) but i just want to use simple Client.OnMessage method to handle the messages. Is there a way to handle this it a clear way or I need to use Session based message handling?
2. Is there a way to replace / update a message in the Service Bus if the MessageId equals. Basically, if there is a message in service bus that get an update from my application and client not handled yet I just want to update that message. I know that is not a normal way of doing things in service bus architecture.