I try to figure out if it's possible to make one Azure webjob and behave it scheduled for say like once per 1 minute and also let it be able to be triggered by a queue. I managed to do both of the requirements separate but not combined in one job.
I know that in order to make them trigger on a queue I need to use JobHost and a Functions class with methods that catch the trigger. Still this blocks the scheduler and only handles triggers
When I omit the JobHost... well then the schedule works perfect. I'm pretty sure that I'm asking a contradiction and just need to make two seperate jobs but maybe one of you faced the same and manage to achieve it.