MakeThreadSafeSectionedResultsChangeset
@frozen
public struct MakeThreadSafeSectionedResultsChangeset<Upstream, T> : Publisher where Upstream : Publisher, T : RealmSectionedResult, Upstream.Output == SectionedResultsChange<T>
A helper publisher created by calling .threadSafeReference() on a
publisher which emits SectionedResultsChange.
-
Specifies the scheduler on which to receive elements from the publisher.
This publisher converts each value emitted by the upstream publisher to a
ThreadSafeReference, passes it to the target scheduler, and then converts back to the original type.Declaration
Swift
public func receive<S>(on scheduler: S) -> DeferredHandoverSectionedResultsChangeset<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