I have a PHP script that writes a file to an Azure Blob. Once the file is uploaded, logic in Azure performs computation and then places the result in the Blob. Upon completion, a message is PUT into an Azure Queue.
I'm trying to write code in php that polls the Queue, looking for a specific message indicating that the Result is ready to download. How would you approach this?
The only feasible way of doing that with PHP that I see following as possible solution to your issue:
Hope this helps!
Add comment if you need any additional help, and I'll try to provide code samples. Everything is pretty trivial.