NSAtomicStore
An abstract superclass that you subclass to create a Core Data atomic store.
Declaration
class NSAtomicStoreOverview
Use an atomic store to handle data sets that can be expressed in memory. The atomic store API favors simplicity over performance.
This class provides default implementations of some utility methods. Create a custom atomic store subclass when you have a custom file format that you want to integrate with a Core Data app. When you create a subclass, override the following NSAtomicStore methods:
Also override the following properties and methods of NSPersistentStore, from which the atomic store class inherits:
NSAtomicStore provides a default dictionary of metadata. This dictionary contains the store type and identifier (NSStoreTypeKey and NSStoreUUIDKey) as well as store versioning information. Subclasses must ensure that the metadata is saved along with the store data.