Package version:
Creates an instance of RetryPolicy.
Readonly_nextThe next policy in the pipeline. Each policy is responsible for executing the next one if the request is to continue through the pipeline.
Readonly_optionsThe options that can be passed to a given request policy.
ProtectedattemptDecide and perform next retry. Won't mutate request parameter.
If attempt was against the secondary & it returned a StatusNotFound (404), then the resource was not found. This may be due to replication delay. So, in this case, we'll never try the secondary again for this operation.
How many retries has been attempted to performed, starting from 1, which includes the attempt will be performed by this method call.
Attempt to log the provided message to the provided logger. If no logger was provided or if the log level does not meat the logger's threshold, then nothing will be logged.
The log level of this log.
The message of this log.
Protectedshould
Retry policy with exponential retry and linear retry implemented.