| RetryOptions | R Documentation |
Retry options may be specified as optional argument to write.
An R6Class object
retryJitterMaximum number of random milliseconds included in delay. Default is 0.
retryIntervalFirst retry delay in seconds. Default is 5.
maxDelayMaximum delay between retries in seconds. Default is 125.
maxRetryTimeMaximum time to spend retrying in seconds. Default is 180.
maxAttemptsNumber of retry attempts. Default is 5.
exponentialBaseBase for exponential backoff strategy. Default is 2.
new()Creates instance of RetryOptions.
RetryOptions$new( retryJitter = 0, retryInterval = 5, maxDelay = 125, maxRetryTime = 180, maxAttempts = 5, exponentialBase = 2, ... )
clone()The objects of this class are cloneable with this method.
RetryOptions$clone(deep = FALSE)
deepWhether to make a deep clone.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.