Home > OS >  Which azure services to use to notify something has completed?
Which azure services to use to notify something has completed?

Time:10-11

I have an Azure function processing a file uploaded by end user which could take a long time. I'd like to notify the end user when process is completed. I'm not clear whether Azure event grid topic, event hub, service bus or other services would be best for this?

I'd like the user to be able to register how they would like to get notified as well. Is there an Azure service that would accomodate this?

CodePudding user response:

You can use Azure Logic Apps to run your functions at a specific time and notify end users by email when finished for instance. Azure Logic Apps are used to run automated workflows that integrate your apps, data, services, and systems.

Link that could be helpful: Create and run your own code from workflows in Azure Logic Apps by using Azure Functions

  • Related