I understand that we have Azure Service Bus trigger for Azure Functions:
https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-service-bus-trigger
I need to get a “Service Bus New Message” notification in my application that is not hosted in Azure Functions. I don’t want to limit my application hosting options to Azure Functions only.
Questions:
How can I get a notification when there is a new message in an Azure Service Bus queue?
What is the notification protocol/mechanism between Service Bus and Azure Function so the we have the Service Bus Trigger feature in Azure Functions?