This package provides a C# based durable Task framework for writing long running applications.
It is built from an OSS version of https://www.nuget.org/packages/ServiceBus.DurableTask.
Automatically adds HTTP endpoints to your .Net Azure Durable Functions project to allow management of orchestration instances, such as querying status, terminating instances, rewind and more.
AWS lambda enables users to write serverless functions. However, a lambda function can have a maximum execution time of 15 minutes after which it times out. Hence, it is not possible to write long running processes in AWS lambda. AWS has introduced step functions to overcome this shortcomming....
More information