Bir RequestType protokolüm var ve aşağıdaki gibi ilişkiliType Modeline sahip.
public protocol RequestType: class {
associatedtype Model
var path: String { get set }
}
public extension RequestType {
public func executeRequest(completionHandler: Result<Model, NSError> -> Void) {
request.response(rootKeyPath: rootKeyPath) { [weak self] (response: Response<Model, NSError>) -> Void in
completionHandler(response.result)
guard let weakSelf = self else { return }
if weakSelf.logging { debugPrint(response) }
}
}
}
Şimdi tüm başarısız istekleri sıraya koymaya çalışıyorum.
public class RequestEventuallyQueue {
static let requestEventuallyQueue = RequestEventuallyQueue()
let queue = [RequestType]()
}
Ancak let queue = [RequestType]()
, Protokol RequestType'ın yalnızca genel bir kısıtlama olarak kullanılabileceğini, çünkü Self veya relatedType gereksinimlerine sahip olduğunu belirten hatayı alıyorum .