public async Task HttpRun(
[HttpTrigger(AuthorizationLevel.Function, “get”, “post”, Route = null)] HttpRequest req,
TaskOrchestrationContext starter, FunctionContext context)
{
//TODO check if BuildingsOrchestration is already running?
await starter.CallActivityAsync(FunctionNames.BuildingsOrchestration);
}
In the above code, how to check if BuildingsOrchestration is already running, or part way through a current execution? Using .net 8, isolated processed (NOT in-process)