Interface BackoffComputer
- 
- All Known Implementing Classes:
- ExponentialBackoffComputer,- LinearBackoffComputer,- RetryLimitedBackoffComputer
 
 public interface BackoffComputer
- 
- 
Nested Class SummaryNested Classes Modifier and Type Interface Description static classBackoffComputer.NoMoreRetriesException
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description longcomputeDelay(int retryNumber)
 
- 
- 
- 
Method Detail- 
computeDelaylong computeDelay(int retryNumber) throws BackoffComputer.NoMoreRetriesException- Parameters:
- retryNumber- starts at 1
- Throws:
- BackoffComputer.NoMoreRetriesException
 
 
- 
 
-