Created
December 7, 2018 11:38
-
-
Save mikhailshilkov/11d29314d26b3d9334e65f5c70f2d5b5 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
var options = new RetryOptions( | |
firstRetryInterval: TimeSpan.FromMinutes(1), | |
maxNumberOfAttempts: 5); | |
options.BackoffCoefficient = 2.0; | |
await context.CallActivityWithRetryAsync("BookFlight", options, itinerary); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment