Strategy
public enum Strategy
The strategy of a backoff retrier essentially defines the time to wait before repeating the request.
-
The exponential binary strategy starts by waiting one second. After each successive failure of the request, it backs off twice as long as before.
Declaration
Swift
case exponentialBinary
View on GitHub
Strategy Enumeration Reference