public enum AmqpRetryMode extends Enum<AmqpRetryMode>
| Enum Constant and Description |
|---|
EXPONENTIAL
Retry attempts will delay based on a backoff strategy, where each attempt will increase the duration that it
waits before retrying.
|
FIXED
Retry attempts happen at fixed intervals; each delay is a consistent duration.
|
| Modifier and Type | Method and Description |
|---|---|
static AmqpRetryMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AmqpRetryMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AmqpRetryMode FIXED
public static final AmqpRetryMode EXPONENTIAL
public static AmqpRetryMode[] values()
public static AmqpRetryMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020 Microsoft Corporation. All rights reserved.