Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Service Bus] Retry Options Docs #21653

Merged
merged 1 commit into from
Jun 7, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ public class ServiceBusRetryOptions
/// to have failed.
/// </summary>
///
///
/// <value>The default retry limit is 3.</value>
///
public int MaxRetries
{
get => _maxRetries;
Expand All @@ -52,6 +55,9 @@ public int MaxRetries
/// on which to base calculations for a backoff-based approach.
/// </summary>
///
///
/// <value>The default delay is 0.8 seconds.</value>
///
public TimeSpan Delay
{
get => _delay;
Expand All @@ -67,6 +73,9 @@ public TimeSpan Delay
/// The maximum permissible delay between retry attempts.
/// </summary>
///
///
/// <value>The default maximum delay is 60 seconds.</value>
///
public TimeSpan MaxDelay
{
get => _maxDelay;
Expand All @@ -83,6 +92,9 @@ public TimeSpan MaxDelay
/// attempt or a retry.
/// </summary>
///
///
/// <value>The default timeout is 60 seconds.</value>
///
public TimeSpan TryTimeout
{
get => _tryTimeout;
Expand Down