Prevent Duplicate Invocations of Durable Functions Using Azure Functions With C#
Durable Functions is an extension for Azure Functions to help write stateful services in a stateless environment. When starting a new process, you may want to verify it isn’t already running by checking the list of in-flight Durable Functions with some custom logic.
[Read More]