私はプロトコルRequestTypeを持っていて、それは以下のようにassociatedTypeモデルを持っています。
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) }
}
}
}
現在、失敗したすべてのリクエストのキューを作成しようとしています。
public class RequestEventuallyQueue {
static let requestEventuallyQueue = RequestEventuallyQueue()
let queue = [RequestType]()
}
しかし、let queue = [RequestType]()
SelfまたはassociatedType要件があるため、ProtocolRequestTypeはジェネリック制約としてのみ使用できるというエラーがオンラインで表示されます。