RetryPolicy

constructor(retryPredicate: RetryPredicate = onException, delayStrategy: DelayStrategy = noDelay)

Creates a new RetryPolicy with the specified RetryPredicate and DelayStrategy delegates.

Parameters

retryPredicate

The RetryPredicate used to evaluate whether a retry should be performed.

delayStrategy

The DelayStrategy used to determine the delay before a retry is attempted.