chris-araman/AsyncCloudKit
π€ Swift extensions for asynchronous CloudKit record processing
β οΈ Deprecated
I am unfortunately unable to maintain this project moving forward. If you would like to fork and maintain it, please reach out.
Please consider making use of the new async functionality in CloudKit and SwiftData.
π¦ Adding AsyncCloudKit to Your Project
AsyncCloudKit is a Swift Package. Add a dependency on AsyncCloudKit to your Package.swift using Xcode or the Swift Package Manager. Optionally, specify a version requirement.
dependencies: [
.package(url: "https://github.com/chris-araman/AsyncCloudKit.git", from: "1.0.0")
]Then resolve the dependency:
swift package resolveTo update to the latest AsyncCloudKit version compatible with your version requirement:
swift package update AsyncCloudKitπ€ Using AsyncCloudKit in Your Project
Swift concurrency allows you to process CloudKit records asynchronously, without writing a lot of boilerplate code involving CKOperations and completion blocks. Here, we perform a query on our CKDatabase, then process the results asynchronously. As each CKRecord is read from the database, we print its name field.
import CloudKit
import AsyncCloudKit
func queryDueItems(database: CKDatabase, due: Date) async throws {
for try await record in database
.performQuery(ofType: "ToDoItem", where: NSPredicate(format: "due >= %@", due)) { (record: CKRecord) in
print("\(record.name)")
})
}Cancellation
AsyncCloudKit functions that return an ACKSequence queue an operation immediately. Iterating the sequence allows you to inspect the results of the operation. If you stop iterating the sequence early, the operation may be cancelled.
Note that because the atBackgroundPriority functions are built on CKDatabase methods that do not provide means of cancellation, they cannot be canceled. If you need operations to respond to requests for cooperative cancellation, please use the publishers that do not have atBackgroundPriority in their names. You can still specify QualityOfService.background by passing in a CKOperation.Configuration.
π Documentation
π―% documented using Jazzy. Hosted by GitHub Pages.
β€οΈ Contributing
Contributions are welcome!
π Further Reading
To learn more about Swift Concurrency and CloudKit, watch these videos from WWDC:
- Explore structured concurrency in Swift
- Discover concurrency in SwiftUI
- Swift concurrency: Behind the scenes
...or review Apple's documentation:
- CloudKit Overview
- CloudKit Documentation
- Swift Language Features for Concurrency
- Apple Concurrency Module
If you're looking for Swift Combine extensions for CloudKit, take a look at CombineCloudKit!
π License
AsyncCloudKit was created by Chris Araman. It is published under the MIT license.
Package Metadata
Repository: chris-araman/AsyncCloudKit
Homepage: https://asynccloudkit.hiddenplace.dev
Stars: 27
Forks: 2
Open issues: 6
Default branch: main
Primary language: swift
License: MIT
Topics: asynchronous, cloudkit, cloudkit-databases, concurrency, extensions, icloud, ios, ipados, mac-catalyst, macos, swift, swift-package, swift-package-manager, tvos, watchos
README: README.md
Archived: yes