AddStoragePublisher
public struct AddStoragePublisher<Storage> : Publisher where Storage : LocalStorage
A Publisher
that emits a ListSnapshot
whenever changes occur in the ListPublisher
.
See also
DataStack.reactive.addStorage(_:)-
Declaration
Swift
public typealias Output = CoreStore.MigrationProgress<Storage>
-
Declaration
Swift
public typealias Failure = CoreStoreError
-
Declaration
Swift
public func receive<S>(subscriber: S) where S : Subscriber, S.Failure == CoreStoreError, S.Input == MigrationProgress<Storage>