I have a pricing app. It sends pricing requests to the Azure Service Bus (any queue) "PricingRequestQueue" queue. There are a number of employees who pick them up, process and return the results to the PricingResponse Queue.
I would like to create an Observable in the PricingResponse queue. I do not need filtering, but you want to read messages using the packet interface (QueueClient.BeginReceiveBatch). The queue has the expected number of messages and has a session to read (QueueClient.AcceptMessageSession (correIdentifier).
I'm still trying to bow my head to the RX, and that will really clarify the situation.
source
share