SyncSpacePersistable
public protocol SyncSpacePersistable : AnyObject
Your NSManagedObject subclass should conform to this SyncSpacePersistable to enable continuing
a sync from a sync token on subsequent launches of your application rather than re-fetching all data
during an initialSync. See Contentful’s Content Delivery API docs
for more information.
-
The current synchronization token
Declaration
Swift
var syncToken: String? { get set } -
Database version to do migrations
Declaration
Swift
var dbVersion: NSNumber? { get set }
View on GitHub
SyncSpacePersistable Protocol Reference