Skip to content

Instantly share code, notes, and snippets.

@mikhailshilkov
Created December 7, 2018 11:40
Show Gist options
  • Save mikhailshilkov/268d6dae32f4f16d140c2d4c1954b83b to your computer and use it in GitHub Desktop.
Save mikhailshilkov/268d6dae32f4f16d140c2d4c1954b83b to your computer and use it in GitHub Desktop.
[FunctionName("CombinedOrchestrator")]
public static async Task CombinedOrchestrator([OrchestrationTrigger] DurableOrchestrationContext context)
{
await context.CallSubOrchestratorAsync("BookTrip", serverlessDaysAmsterdam);
await context.CallSubOrchestratorAsync("BookTrip", serverlessDaysHamburg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment