Uses of Class
com.google.api.client.util.ExponentialBackOff.Builder
-
Packages that use ExponentialBackOff.Builder Package Description com.google.api.client.http Subset of HTTP 1.1 needed from the specification in RFC 2616: Hypertext Transfer Protocol -- HTTP/1.1.com.google.api.client.util General utilities used throughout this library. -
-
Uses of ExponentialBackOff.Builder in com.google.api.client.http
Fields in com.google.api.client.http declared as ExponentialBackOff.Builder Modifier and Type Field Description (package private) ExponentialBackOff.Builder
ExponentialBackOffPolicy.Builder. exponentialBackOffBuilder
Deprecated.Exponential back-off builder. -
Uses of ExponentialBackOff.Builder in com.google.api.client.util
Methods in com.google.api.client.util that return ExponentialBackOff.Builder Modifier and Type Method Description ExponentialBackOff.Builder
ExponentialBackOff.Builder. setInitialIntervalMillis(int initialIntervalMillis)
Sets the initial retry interval in milliseconds.ExponentialBackOff.Builder
ExponentialBackOff.Builder. setMaxElapsedTimeMillis(int maxElapsedTimeMillis)
Sets the maximum elapsed time in milliseconds.ExponentialBackOff.Builder
ExponentialBackOff.Builder. setMaxIntervalMillis(int maxIntervalMillis)
Sets the maximum value of the back off period in milliseconds.ExponentialBackOff.Builder
ExponentialBackOff.Builder. setMultiplier(double multiplier)
Sets the value to multiply the current interval with for each retry attempt.ExponentialBackOff.Builder
ExponentialBackOff.Builder. setNanoClock(NanoClock nanoClock)
Sets the nano clock (NanoClock.SYSTEM
by default).ExponentialBackOff.Builder
ExponentialBackOff.Builder. setRandomizationFactor(double randomizationFactor)
Sets the randomization factor to use for creating a range around the retry interval.Constructors in com.google.api.client.util with parameters of type ExponentialBackOff.Builder Constructor Description ExponentialBackOff(ExponentialBackOff.Builder builder)
-