Azure Functions - What is Azure Functions?

There are two main concepts when it comes to Azure Functions, and that is “Events” and “Code”. The concept of Azure Functions is that “Events” trigger “Code” Some examples of events are, new data being available (item being put onto a queue or blob storage), or an HTTP request is received for running some code based off a webhook or building a REST API.

Read More