CollectionChangesetWithToken
public class CollectionChangesetWithToken<Collection, T> : Publisher where Collection : RealmCollection
A publisher which emits RealmCollectionChange
receive(on:) and subscribe(on:) can be called directly on this
publisher, and calling .threadSafeReference() is only required if
there is an intermediate transform. If subscribe(on:) is used, it
should always be the first operation in the pipeline.
Create this publisher using the changesetPublisher property on RealmCollection.
-
Declaration
Swift
public typealias Output = RealmCollectionChange<Collection> -
This publisher reports error via the
.errorcase of RealmCollectionChange.Declaration
Swift
public typealias Failure = Never -
Specifies the scheduler on which to perform subscribe, cancel, and request operations.
For Realm Publishers, this determines which queue the underlying change notifications are sent to. If
receive(on:)is not used subsequently, it also will determine which queue elements received from the publisher are evaluated on. Currently only serial dispatch queues are supported, and theoptions:parameter is not supported.Declaration
Swift
public func subscribe<S>(on scheduler: S) -> CollectionChangesetWithToken<Collection, T> where S : SchedulerParameters
schedulerThe serial dispatch queue to perform the subscription on.
Return Value
A publisher which subscribes on the given scheduler.
-
Specifies the scheduler on which to perform downstream operations.
This differs from
subscribe(on:)in how it is integrated with the autorefresh cycle. When usingsubscribe(on:), the subscription is performed on the target scheduler and the publisher will emit the collection during the refresh. When usingreceive(on:), the collection is then converted to aThreadSafeReferenceand delivered to the target scheduler with no integration into the autorefresh cycle, meaning it may arrive some time after the refresh occurs.When in doubt, you probably want
subscribe(on:)Declaration
Swift
public func receive<S>(on scheduler: S) -> DeferredHandoverCollectionChangeset<CollectionChangesetWithToken, Collection, S> where S : SchedulerParameters
schedulerThe serial dispatch queue to receive values on.
Return Value
A publisher which delivers values to the given scheduler.
View on GitHub
Install in Dash