MakeThreadSafeObjectChangeset
@frozen
public struct MakeThreadSafeObjectChangeset<Upstream, T> : Publisher where Upstream : Publisher, T : ThreadConfined, Upstream.Output == ObjectChange<T>
A helper publisher created by calling .threadSafeReference() on a publisher which emits thread-confined values.
-
Specifies the scheduler to deliver object changesets to.
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) -> DeferredHandoverObjectChangeset<Upstream, T, 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