Skip to content

Instantly share code, notes, and snippets.

@mikhailshilkov
Created December 7, 2018 11:38
Show Gist options
  • Save mikhailshilkov/11d29314d26b3d9334e65f5c70f2d5b5 to your computer and use it in GitHub Desktop.
Save mikhailshilkov/11d29314d26b3d9334e65f5c70f2d5b5 to your computer and use it in GitHub Desktop.
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