Adapt Alamofire requests in RetryPolice

144 Views Asked by At

i used RetryPolicy in my code with this class:

open class ConnectionLostRetryPolicy: RetryPolicy {
    public init(retryLimit: UInt = RetryPolicy.defaultRetryLimit,
                exponentialBackoffBase: UInt = RetryPolicy.defaultExponentialBackoffBase,
                exponentialBackoffScale: Double = RetryPolicy.defaultExponentialBackoffScale,
                retryableHTTPMethods: Set<HTTPMethod> = RetryPolicy.defaultRetryableHTTPMethods) {
        super.init(retryLimit: retryLimit,
                   exponentialBackoffBase: exponentialBackoffBase,
                   exponentialBackoffScale: exponentialBackoffScale,
                   retryableHTTPMethods: retryableHTTPMethods,
                   retryableHTTPStatusCodes: [],
                   retryableURLErrorCodes: [.networkConnectionLost])
    }

    public func adapt(_ urlRequest: URLRequest, for session: Session, completion: @escaping (Result<URLRequest, Error>) -> Void) {
        print("TEST")
    }
}

and i want to adapt per request to change timeout time. but adapt func does not called. what should i do?

i used it like this:

let alamofire = AlamofireSession.shared
alamofire.session = Session(interceptor: ConnectionLostRetryPolicy())
1

There are 1 best solutions below

2
On

This looks like some sort of wrapper for Alamofire, as AlamofireSession isn't something Alamofire provides. An Alamofire Session has an underlying .session, which is the URLSession. I suggest you look into whatever wrapper you're using.