Skip to content

Swift Package for managing Core Data concurrency using actors, inspired by @fatbobman’s experimental work, with support for iOS 13+

License

Notifications You must be signed in to change notification settings

rnine/CoreDataModelActor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CoreDataModelActor

CoreDataModelActor is a Swift Package that extends and enhances the ideas presented by fatbobman in his article and the associated experimental project CoreDataEvolution. This package introduces support for older platforms (down to iOS 13) and provides two different executors to manage Core Data concurrency across various versions of Apple's operating systems.

Example Usage

Here’s an example of how to use CoreDataModelActor to manage Core Data operations with actors:

import Foundation
import CoreDataModelActor
import CoreDataModelActorMacros

@NSModelActor
actor DocumentsRepository {
    func toggleFavorite(objectURIs: [URL]) async throws {
        let documents: [CDDocument] = await modelContext.objects(withURIRepresentations: objectURIs)

        for document in documents {
            document.isFavorite.toggle()
        }

        try modelContext.saveIfNeeded()
    }
}

Minimum Supported Targets

  • macOS 10.15
  • iOS 13
  • tvOS 13
  • watchOS 6
  • Mac Catalyst 13

Credits

This project is inspired by and based on the experimental work done by fatbobman. You can find the original article and project at the following links:

About

Swift Package for managing Core Data concurrency using actors, inspired by @fatbobman’s experimental work, with support for iOS 13+

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages