I have an Azure durable function (HttpTrigger -> orchestrator -> activity) which is called from 2 sources - automated and manually. When called automatically, multiple calls are queued and then executed. When calling the function manually, the manual call is also queued and will be executed at some time in the future (after all queued automated calls are executed). What I would like to do is to prioritize the manual call in such a way that it is the next to be processed, so it has a higher priority than the automated calls.
Is there a way to do this?