Skip to content

Syrus666/azure-functions-durable-extension

 
 

Repository files navigation

Durable Functions

Durable Functions (an extension of Azure Functions and Azure WebJobs) enables writing long-running, stateful function orchestrations in code in a serverless environment.

This extension enables a new type of function called the orchestrator function that allows you to do several new things that differentiates it from an ordinary, stateless function:

  • They are stateful workflows authored in code. No JSON schemas or designers.
  • They can synchronously and asynchronously call other functions and save output to local variables.
  • They automatically checkpoint their progress whenever the function awaits so that local state is never lost if the process recycles or the VM reboots.

The Durable Functions extension currently ships as the Microsoft.Azure.WebJobs.Extensions.DurableTask NuGet package that can be referenced by an Azure Functions Visual Studio project. The project is currently in a public preview "beta" status.

Getting Started

Are you new to Durable Functions? If so, this is the place to start.

Samples / Walkthroughs

Here are some samples you can study and/or reference. These will help you 1) learn how to write Durable Functions by example and 2) learn the various capabilities of Durable Functions.

Also, you can download all the samples as a single function app, which you can download from one of these two links:

Using one of the sample projects is a great way to get up and running quickly and is the recommended way to get started. See the sample / walkthrough links above for specific instructions.

Topical Guides

Here you will find comprehensive documentation with examples on all of the feature areas. It's highly recommended that you read through all of these topics before coding.

.NET API Reference

.NET API reference for the attributes and bindings provided by Durable Functions.

Attributes

Bindings

You can browse all of our public APIs here.

Contributing

We welcome outside contributions. If you are interested in contributing, please take a look at our CONTRIBUTING guide.

License

This project is under the benevolent umbrella of the .NET Foundation and is licensed under the MIT License

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

About

Durable Task Framework extension for Azure Functions

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 65.9%
  • CSS 23.1%
  • JavaScript 10.0%
  • Other 1.0%