- Http Trigger function with queue message output
- Queue Trigger function.
They were created using VS 2017 Template and not from de Azure Portal.
Basically you fire the task doing a request to the first Azure Function. This Function leaves a message in a queue and the response the request. So your app continues to run normally (fire and forget).
Then, there is another Function that proccess that message. Hereinafter, you can check / notify the result however you want.
Source code in my github repo: https://github.com/vackup/QueueAzureFunctionApp
More info at:
- https://docs.microsoft.com/en-us/azure/azure-functions/functions-integrate-storage-queue-output-binding
- https://docs.microsoft.com/en-us/azure/azure-functions/functions-create-storage-queue-triggered-function
- https://stackoverflow.com/questions/44961482/how-to-specify-output-bindings-of-azure-function-from-visual-studio-2017-preview