I'm migrating to "App Service for Linux". Unfortunately, it doesn't support WebJobs. And here it says it won't. It suggests using Azure Functions instead.
I have a continuous application with no triggers. It should be always running, something like this:
while (true)
{
// The logic
}
How should I utilize Azure Functions for such an application?