combine-master
というブランチなので開発中)ですが、 Future
じゃなくて AnyPublisher
返すようになってるの微妙じゃないですか? public func getDocuments() -> AnyPublisher<QuerySnapshot, Error> { Future<QuerySnapshot, Error> { [weak self] promise in self?.getDocuments { querySnapshot, error in if let error = error { promise(.failure(error)) } else if let querySnapshot = querySnapshot { promise(.success(querySnapshot)) } else { promise(.failure(NSError(domain: "FirebaseFirestoreSwift", code: -1, userInfo: [NSLocalizedDescriptionKey: "InternalError - Return type and Error code both nil in " + "getDocuments publisher"]))) } } } .eraseToAnyPublisher() }
https://github.com/firebase/firebase-ios-sdk/blob/combine-master/Firestore/Swift/Source/Combine/Query+Combine.swift#L45-L62Future
、 addSnapshotListener
とかは AnyPublisher
と分けてほしい気が。Future
に func get() async throws -> Output
が生えるだろうし。 (edited)