I'm creating an Azure Function to process files. The Azure Function will be activated with a HTTP Trigger, so the function should be executed whenever a page from a site makes a HTTP request to it.
The Function will take some time to finish processing the files, but I can't get the site waiting for the Function to finish to know If everything was ok. So what I want is some kind of "received" message from the Azure Function just to know that it received the HTTP request, before it starts processing.
Is there any way to do that with a HTTP Trigger? Can I let the caller know that its request was correctly received and, after that, start executing the Azure Function?