Is it possible for an Azure Function to run without a binding (timer, topic, queue, HTTP) etc?
My Azure Function is a process that I want to run continuously in a loop without it completing, unless the Azure Function is stopped through the U.I.
I could have the Azure Function run off a timer trigger that runs every day and let the Azure Function complete after 23 hours and 59 minutes but I'd prefer not to take that approach.