CompositeCodableStoring

public protocol CompositeCodableStoring : CodableStoring

Undocumented

  • Store where the data will be saved. This can be any custom store which conforms to the DataStoring protocol

    Declaration

    Swift

    var persistentStore: DataStoring? { get }
  • Function to set the store where the data will be saved.

    Declaration

    Swift

    func setPersistentStore(_ store: DataStoring) throws

    Parameters

    store

    A store which conforms to the DataStoring protocol

  • Releases the persistent store

    Declaration

    Swift

    func releasePersistentStore()