Package com.oracle.bmc.waiter
Class ExponentialBackoffDelayStrategyWithJitter
- java.lang.Object
- 
- com.oracle.bmc.waiter.ExponentialBackoffDelayStrategy
- 
- com.oracle.bmc.waiter.ExponentialBackoffDelayStrategyWithJitter
 
 
- 
- All Implemented Interfaces:
- DelayStrategy
 
 public class ExponentialBackoffDelayStrategyWithJitter extends ExponentialBackoffDelayStrategy Delay strategy that increases the wait time exponentially until a max time has been reached.
- 
- 
Constructor SummaryConstructors Constructor Description ExponentialBackoffDelayStrategyWithJitter(long maxDelayInMillis)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description longnextDelay(WaiterConfiguration.WaitContext context)Returns the amount of time to wait (in millis) before making another poll attempt.- 
Methods inherited from class com.oracle.bmc.waiter.ExponentialBackoffDelayStrategytoString
 
- 
 
- 
- 
- 
Method Detail- 
nextDelaypublic long nextDelay(WaiterConfiguration.WaitContext context) Description copied from interface:DelayStrategyReturns the amount of time to wait (in millis) before making another poll attempt.- Specified by:
- nextDelayin interface- DelayStrategy
- Overrides:
- nextDelayin class- ExponentialBackoffDelayStrategy
- Parameters:
- context- The context after the last attempt.
- Returns:
- The amount of time to wait, in millis.
 
 
- 
 
-