Uses of Interface
com.google.api.client.util.Sleeper
-
Packages that use Sleeper 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.testing.util Beta
Testing utilities used for writing tests based on this library.com.google.api.client.util General utilities used throughout this library. -
-
Uses of Sleeper in com.google.api.client.http
Methods in com.google.api.client.http that return Sleeper Modifier and Type Method Description Sleeper
HttpBackOffIOExceptionHandler. getSleeper()
Returns the sleeper.Sleeper
HttpBackOffUnsuccessfulResponseHandler. getSleeper()
Returns the sleeper.Sleeper
HttpRequest. getSleeper()
Returns the sleeper.Methods in com.google.api.client.http with parameters of type Sleeper Modifier and Type Method Description HttpBackOffIOExceptionHandler
HttpBackOffIOExceptionHandler. setSleeper(Sleeper sleeper)
Sets the sleeper.HttpBackOffUnsuccessfulResponseHandler
HttpBackOffUnsuccessfulResponseHandler. setSleeper(Sleeper sleeper)
Sets the sleeper.HttpRequest
HttpRequest. setSleeper(Sleeper sleeper)
Sets the sleeper. -
Uses of Sleeper in com.google.api.client.testing.util
Classes in com.google.api.client.testing.util that implement Sleeper Modifier and Type Class Description class
MockSleeper
-
Uses of Sleeper in com.google.api.client.util
Fields in com.google.api.client.util declared as Sleeper Modifier and Type Field Description static Sleeper
Sleeper. DEFAULT
Provides the default implementation based onThread.sleep(long)
.Methods in com.google.api.client.util with parameters of type Sleeper Modifier and Type Method Description static boolean
BackOffUtils. next(Sleeper sleeper, BackOff backOff)
Runs the next iteration of the back-off policy, and returns whether to continue to retry the operation.
-