Skip to content
This repository has been archived by the owner on Oct 17, 2021. It is now read-only.

RetryResult

mattt edited this page Jan 26, 2020 · 2 revisions

RetryResult

Outcome of determination whether retry is necessary.

public enum RetryResult

Enumeration Cases

retry

Retry should be attempted immediately.

case retry

retryWithDelay

Retry should be attempted after the associated TimeInterval.

case retryWithDelay(: TimeInterval)

doNotRetry

Do not retry.

case doNotRetry

doNotRetryWithError

Do not retry due to the associated AFError.

case doNotRetryWithError(: Error)
Types
Protocols
Global Typealiases
Clone this wiki locally