Interface RetryOptionsProvider.RetryOptions
- All Known Subinterfaces:
RetryOptionsProvider.AmqpRetryOptions
- All Known Implementing Classes:
AmqpRetryProperties
,RetryProperties
- Enclosing interface:
RetryOptionsProvider
public static interface RetryOptionsProvider.RetryOptions
Interface to be implemented by classes that wish to describe retry options.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interface
Interface to be implemented by classes that wish to describe retry options of exponential retry mode.static interface
Interface to be implemented by classes that wish to describe retry options of fixed retry mode. -
Method Summary
-
Method Details
-
getMode
RetryOptionsProvider.RetryMode getMode()Get the retry backoff mode.- Returns:
- the retry backoff mode.
-
getFixed
Get the retry options of the fixed retry mode.- Returns:
- the retry options of fixed retry mode.
-
getExponential
RetryOptionsProvider.RetryOptions.ExponentialRetryOptions getExponential()Get the retry options of the exponential retry mode.- Returns:
- the retry options of exponential retry mode.
-