Package com.fauna.client
Class NoRetryStrategy
- java.lang.Object
-
- com.fauna.client.NoRetryStrategy
-
- All Implemented Interfaces:
RetryStrategy
public final class NoRetryStrategy extends java.lang.Object implements RetryStrategy
Specifies that no retries will be made.
-
-
Constructor Summary
Constructors Constructor Description NoRetryStrategy()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanRetry(int retryAttempt)Returns true if the given retry attempt will be allowed by this strategy.intgetDelayMillis(int retryAttempt)Return the number of milliseconds to delay the next retry attempt.intgetMaxRetryAttempts()Return the maximum number of retry attempts for this strategy.
-
-
-
Method Detail
-
canRetry
public boolean canRetry(int retryAttempt)
Description copied from interface:RetryStrategyReturns true if the given retry attempt will be allowed by this strategy.- Specified by:
canRetryin interfaceRetryStrategy- Parameters:
retryAttempt- The retry attempt number, starting at 1 (i.e. the second overall attempt, or first retry is attempt 1).- Returns:
- True if this attempt can be retried, otherwise false.
-
getDelayMillis
public int getDelayMillis(int retryAttempt)
Description copied from interface:RetryStrategyReturn the number of milliseconds to delay the next retry attempt.- Specified by:
getDelayMillisin interfaceRetryStrategy- Parameters:
retryAttempt- The retry attempt number, starting at 1 (i.e. the second overall attempt/first retry is #1).- Returns:
- The number of milliseconds to delay the next retry attempt.
-
getMaxRetryAttempts
public int getMaxRetryAttempts()
Description copied from interface:RetryStrategyReturn the maximum number of retry attempts for this strategy.- Specified by:
getMaxRetryAttemptsin interfaceRetryStrategy- Returns:
- The number of retry attempts that this strategy will attempt.
-
-