Created
December 7, 2018 11:40
-
-
Save mikhailshilkov/268d6dae32f4f16d140c2d4c1954b83b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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