I have a web app where clients can press a button that calls a durable function. As long as that function is executing, a spinning wheel is animated. When the function finishes executing, I stop/hide the loading wheel, and show a green check-mark.
Currently, I'm just hitting the "statusQueryGetUri" returned by the durable function, on a regular interval, to see if the function is running/stopped.
Is there a way for me to 'listen' for changes in status so I'm not hitting that URL repeatedly?