I have asp.net core REST API interacting with Azure Queue with input data. I have a Azure Function App with trigger on Azure Queue service. Whenever any entry that happens at the Azure Queue level, Azure Function app gets triggered which executes certain business functionality and returns the response.
After going the article : https://endjin.com/blog/2022/09/bye-bye-azure-functions-hello-azure-container-apps-part-2-migrating-from-azure-functions-to-asp-net-core , I am planning to migrate the Azure Function app to Azure Container app with gRPC based services.
I tried to explore few details https://learn.microsoft.com/en-us/azure/container-apps/samples but did not come across any good reference.
Here my challenge is how to trigger the gRPC C# services whenever any entry is added to the Azure Service Queue.
Can anyone help me here by providing some guidance?