Uses of Interface
com.google.api.gax.retrying.TimedRetryAlgorithmWithContext
Packages that use TimedRetryAlgorithmWithContext
-
Uses of TimedRetryAlgorithmWithContext in com.google.api.gax.longrunning
Classes in com.google.api.gax.longrunning that implement TimedRetryAlgorithmWithContextModifier and TypeClassDescriptionclassOperation timed polling algorithm, which uses exponential backoff factor for determining when the next polling operation should be executed. -
Uses of TimedRetryAlgorithmWithContext in com.google.api.gax.retrying
Classes in com.google.api.gax.retrying that implement TimedRetryAlgorithmWithContextModifier and TypeClassDescriptionclassThe timed poll algorithm which uses jittered exponential backoff factor for calculating the next poll execution time and throwsPollExceptionin case if total timeout or total number of attempts is reached.classThe timed retry algorithm which uses jittered exponential backoff factor for calculating the next attempt execution time.Constructors in com.google.api.gax.retrying with parameters of type TimedRetryAlgorithmWithContextModifierConstructorDescriptionRetryAlgorithm(ResultRetryAlgorithmWithContext<ResponseT> resultAlgorithm, TimedRetryAlgorithmWithContext timedAlgorithm) Creates a new retry algorithm instance, which uses thrown exception or returned response and timed algorithms to make a decision.StreamingRetryAlgorithm(ResultRetryAlgorithmWithContext<ResponseT> resultAlgorithm, TimedRetryAlgorithmWithContext timedAlgorithm) Creates aStreamingRetryAlgorithmthat will use the settings (if any) in theRetryingContextthat is passed in to the retrying methods.