AmqpRetryMode Enum

  • java.lang.Object
    • java.lang.Enum
      • com.azure.core.amqp.AmqpRetryMode

public enum AmqpRetryMode
extends Enum<AmqpRetryMode>

The type of approach to apply when calculating the delay between retry attempts.

Fields

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.

Methods inherited from java.lang.Enum

Methods inherited from java.lang.Object

Methods

valueOf(String name)

public static AmqpRetryMode valueOf(String name)

Parameters

name
String

Returns

values()

public static AmqpRetryMode[] values()

Returns

Applies to