Uses of Class
com.google.appengine.api.taskqueue.RetryOptions
-
Packages that use RetryOptions Package Description com.google.appengine.api.taskqueue Provides a mechanism to perform work initiated by a user request, outside of that request. -
-
Uses of RetryOptions in com.google.appengine.api.taskqueue
Methods in com.google.appengine.api.taskqueue that return RetryOptions Modifier and Type Method Description RetryOptionsTaskOptions. getRetryOptions()Returns a copy of the retry options for a task.RetryOptionsRetryOptions. maxBackoffSeconds(double maxBackoffSeconds)Sets the maximum retry backoff interval, in seconds.RetryOptionsRetryOptions. maxDoublings(int maxDoublings)Sets the maximum times the retry backoff interval should double before rising linearly to the maximum.RetryOptionsRetryOptions. minBackoffSeconds(double minBackoffSeconds)Sets the minimum retry backoff interval, in seconds.RetryOptionsRetryOptions. taskAgeLimitSeconds(long taskAgeLimitSeconds)Sets the maximum age from the first attempt to execute a task after which any new task failure can be permanent.RetryOptionsRetryOptions. taskRetryLimit(int taskRetryLimit)Sets the number of retries allowed before a task can fail permanently.static RetryOptionsRetryOptions.Builder. withDefaults()Returns defaultRetryOptions.static RetryOptionsRetryOptions.Builder. withMaxBackoffSeconds(double maxBackoffSeconds)Returns defaultRetryOptionsand callsmaxBackoffSeconds(double).static RetryOptionsRetryOptions.Builder. withMaxDoublings(int maxDoublings)Returns defaultRetryOptionsand callsmaxDoublings(int).static RetryOptionsRetryOptions.Builder. withMinBackoffSeconds(double minBackoffSeconds)Returns defaultRetryOptionsand callsminBackoffSeconds(double).static RetryOptionsRetryOptions.Builder. withTaskAgeLimitSeconds(long taskAgeLimitSeconds)Returns defaultRetryOptionsand callstaskAgeLimitSeconds(long).static RetryOptionsRetryOptions.Builder. withTaskRetryLimit(int taskRetryLimit)Returns defaultRetryOptionsand callstaskRetryLimit(int).Methods in com.google.appengine.api.taskqueue with parameters of type RetryOptions Modifier and Type Method Description TaskOptionsTaskOptions. retryOptions(RetryOptions retryOptions)Sets retry options for this task.static TaskOptionsTaskOptions.Builder. withRetryOptions(RetryOptions retryOptions)Returns defaultTaskOptionsand callsTaskOptions.retryOptions(RetryOptions).Constructors in com.google.appengine.api.taskqueue with parameters of type RetryOptions Constructor Description RetryOptions(RetryOptions options)
-