AsyncTaskOrchestratorGenerator 0.2.0

dotnet add package AsyncTaskOrchestratorGenerator --version 0.2.0
                    
NuGet\Install-Package AsyncTaskOrchestratorGenerator -Version 0.2.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AsyncTaskOrchestratorGenerator" Version="0.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AsyncTaskOrchestratorGenerator" Version="0.2.0" />
                    
Directory.Packages.props
<PackageReference Include="AsyncTaskOrchestratorGenerator" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AsyncTaskOrchestratorGenerator --version 0.2.0
                    
#r "nuget: AsyncTaskOrchestratorGenerator, 0.2.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package AsyncTaskOrchestratorGenerator@0.2.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AsyncTaskOrchestratorGenerator&version=0.2.0
                    
Install as a Cake Addin
#tool nuget:?package=AsyncTaskOrchestratorGenerator&version=0.2.0
                    
Install as a Cake Tool

Async Task Orchestrator Generator

NuGet Version GitHub Workflow Status (with event) NuGet Downloads GitHub Sponsors

C# source generator for executing dependent async tasks optimally and easily.

Orchestrating multiple asynchronous operations in C# can be challenging, especially when optimizing for parallel execution of I/O tasks such as REST API service calls to microservices. The optimization challenge is even greater when the operations have dependencies on each other.

This source generator simplifies the implementation by enabling developers to easily define the relationship between async tasks via their inputs and outputs. This generator then uses the specification provided by the developer to generates optimal code that maximizes parallel execution of the tasks from an I/O standpoint. This includes immediately handling tasks as they complete.

Requirements

The generated code uses features from .NET 9.

Motivation Example

Here is a sequence diagram representing an example orchestration of API calls to multiple services, where some calls depend on the results of others:

sequenceDiagram
	par My to A
		My Service ->> Service A:
	and My to B
		My Service ->> Service B:
	and My to D
		My Service ->> Service D:
	end

	Service A -->> My Service: A Result
	Service B -->> My Service: B Result

	My Service ->> Service C: A Result, B Result
	Service C -->> My Service: C Result

	My Service ->> Service D:
	Service D -->> My Service: D Result

	My Service ->> Service E: D Result
	Service E -->> My Service: E Result

	My Service ->> Service F: C Result, E Result
	Service E -->> My Service: F Result

As shown in the diagram, calls to A, B, and D can be called in parallel. Once both A and B complete, C can be called with the responses from A and B. When D returns, E can be called. Once both C and E return their responses, F can finally be called with the responses from C and E.

Beginning to try to implement this in C#:

var taskA = a.CallA();
var taskB = b.CallB();
var taskD = d.CallD();

await Task.WhenAll(taskA, taskB);

var resultA = taskA.Result;
var resultB = taskB.Result;

var taskC = c.CallC(resultA, resultB);

var resultD = await taskD;

var taskE = e.CallE(resultD);

await Task.WhenAll(taskC, taskE);

return await f.CallF(taskC.Result, taskD.Result);

While the above code works, it is not optimal from an I/O perspective. D could complete before A and B while they are being awaited. In this case, E cannot be called until A and B complete, even though D has already completed.

A more complex implementation is needed to handle tasks as they complete. It is feasible, but as you'll see in the next section, this source generator can greatly simplify the implementation.

Using the Source Generator

Create a specification class, decorated with the AsyncTaskOrchestrator attribute, that defines the async tasks to be orchestrated. This spec is a domain specific language (DSL) within C# that specifies task dependencies via which task outputs should be used as inputs to other tasks.

using AsyncTaskOrchestratorGenerator;

namespace TestLibrary;

[AsyncTaskOrchestrator]
internal class OrchestratorSpec
{
    private readonly A a;
    private readonly B b;
    private readonly C c;
    private readonly D d;
    private readonly E e;
    private readonly F f;

    public OrchestratorSpec(A a, B b, C c, D d, E e, F f)
    {
        this.a = a;
        this.b = b;
        this.c = c;
        this.d = d;
        this.e = e;
        this.f = f;
    }

    public Task<int> Spec()
    {
        var resultA = a.CallA(); 
        var resultB = b.CallB();
        var resultC = c.CallC(resultA.Result, resultB.Result);
        var resultD = d.CallD(); 
        var resultE = e.CallE(resultD.Result);
        return f.CallF(resultC.Result, resultE.Result);
    }
}

Notice that the call to D is specified after the call to C. This will not affect the execution order optimization. In other words, as long as the code compiles, the call order does not matter (which means one less thing to worry about!).

Also take note that there is no need to manage await calls or figuring out which Task.* method to call.

The source generator will generate an orchestrator class based on the spec provided in the same namespace. The class name and the method name can be specified in the attribute's parameters. The default class name is Orchestrator and the default method name is Execute.

Example usage of the generated orchestrator:

var a = new A();
var b = new B();
var c = new C();
var d = new D();
var e = new E();
var f = new F();

var orchestrator = new Orchestrator(a, b, c, d, e, f);

var result = await orchestrator.Execute();
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.2.0 251 11/30/2025
0.1.0 256 11/30/2025

0.2.0
- Downgrade from .NET Standard 2.1 to .NET Standard 2.0.
- Generate inteface that generated orchestrator class implements to better support dependency injection.
0.1.0
- Initial Release