Package com.google.api.client.util
Class BackOffUtils
java.lang.Object
com.google.api.client.util.BackOffUtils
- Since:
- 1.15
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
BackOffUtils
private BackOffUtils()
-
-
Method Details
-
next
public static boolean next(Sleeper sleeper, BackOff backOff) throws InterruptedException, IOException Runs the next iteration of the back-off policy, and returns whether to continue to retry the operation.If
true
, it will callSleeper.sleep(long)
with the specified number of milliseconds fromBackOff.nextBackOffMillis()
.- Parameters:
sleeper
- sleeperbackOff
- back-off policy- Returns:
- whether to continue to back off; in other words, whether
BackOff.nextBackOffMillis()
did not returnBackOff.STOP
- Throws:
InterruptedException
- if any thread has interrupted the current threadIOException
-