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())
This looks like some sort of wrapper for Alamofire, as
AlamofireSession
isn't something Alamofire provides. An AlamofireSession
has an underlying.session
, which is theURLSession
. I suggest you look into whatever wrapper you're using.