RealmPublishers
@available(macOS 10.15, watchOS 6.0, iOS 13.0, iOSApplicationExtension 13.0, macOSApplicationExtension 10.15, tvOS 13.0, *)
public enum RealmPublishers
Combine publishers for Realm types.
You normally should not create any of these types directly, and should instead use the extension methods which create them.
-
A publisher which emits an asynchronously opened Realm.
See moreDeclaration
Swift
@frozen public struct AsyncOpenPublisher : Publisher
-
A publisher which emits Void each time the Realm is refreshed.
Despite the name, this actually emits after the Realm is refreshed.
See moreDeclaration
Swift
@frozen public struct RealmWillChange : Publisher
-
A publisher which emits Void each time the object is mutated.
Despite the name, this actually emits after the collection has changed.
See moreDeclaration
Swift
@frozen public struct WillChange<Collection> : Publisher where Collection : RealmSubscribable, Collection : ThreadConfined
-
A publisher which emits Void each time the object is mutated.
Despite the name, this actually emits after the collection has changed.
See moreDeclaration
Swift
public class WillChangeWithToken<Collection, T> : Publisher where Collection : RealmSubscribable, Collection : ThreadConfined
-
A publisher which emits an object or collection each time that object is mutated.
See moreDeclaration
Swift
@frozen public struct Value<Subscribable> : Publisher where Subscribable : RealmSubscribable, Subscribable : ThreadConfined
-
A publisher which emits an object or collection each time that object is mutated.
See moreDeclaration
Swift
public class ValueWithToken<Subscribable, T> : Publisher where Subscribable : RealmSubscribable, Subscribable : ThreadConfined
-
A helper publisher used to support
receive(on:)
on Realm publishers.Declaration
Swift
@frozen public struct Handover<Upstream, S> : Publisher where Upstream : Publisher, S : Scheduler, Upstream.Output : ThreadConfined
-
A publisher which makes
receive(on:)
work for streams of thread-confined objectsCreate using .threadSafeReference()
See moreDeclaration
Swift
@frozen public struct MakeThreadSafe<Upstream> : Publisher where Upstream : Publisher, Upstream.Output : ThreadConfined
-
A publisher which delivers thread-confined values to a serial dispatch queue.
Create using
.threadSafeReference().receive(on: queue)
on a publisher that emits thread-confined objects.Declaration
Swift
@frozen public struct DeferredHandover<Upstream, S> : Publisher where Upstream : Publisher, S : Scheduler, Upstream.Output : ThreadConfined
-
A publisher which emits ObjectChange
each time the observed object is modified receive(on:)
andsubscribe(on:)
can be called directly on this publisher, and calling.threadSafeReference()
is only required if there is an intermediate transform. Ifsubscribe(on:)
is used, it should always be the first operation in the pipeline.Create this publisher using the
See moreobjectChangeset()
function.Declaration
Swift
@frozen public struct ObjectChangeset<O> : Publisher where O : Object
-
A publisher which emits ObjectChange
each time the observed object is modified receive(on:)
andsubscribe(on:)
can be called directly on this publisher, and calling.threadSafeReference()
is only required if there is an intermediate transform. Ifsubscribe(on:)
is used, it should always be the first operation in the pipeline.Create this publisher using the
See moreobjectChangeset()
function.Declaration
Swift
public class ObjectChangesetWithToken<O, T> : Publisher where O : Object
-
A helper publisher created by calling
See more.threadSafeReference()
on a publisher which emits thread-confined values.Declaration
Swift
@frozen public struct MakeThreadSafeObjectChangeset<Upstream, T> : Publisher where Upstream : Publisher, T : Object, Upstream.Output == ObjectChange<T>
-
A publisher which delivers thread-confined object changesets to a serial dispatch queue.
Create using
.threadSafeReference().receive(on: queue)
on a publisher that emitsObjectChange
.Declaration
Swift
@frozen public struct DeferredHandoverObjectChangeset<Upstream, T, S> : Publisher where Upstream : Publisher, T : Object, S : Scheduler, Upstream.Output == ObjectChange<T>
-
A publisher which emits RealmCollectionChange
each time the observed object is modified receive(on:)
andsubscribe(on:)
can be called directly on this publisher, and calling.threadSafeReference()
is only required if there is an intermediate transform. Ifsubscribe(on:)
is used, it should always be the first operation in the pipeline.Create this publisher using the
See morechangesetPublisher
property on RealmCollection.Declaration
Swift
@frozen public struct CollectionChangeset<Collection> : Publisher where Collection : RealmCollection
-
A publisher which emits RealmCollectionChange
each time the observed object is modified receive(on:)
andsubscribe(on:)
can be called directly on this publisher, and calling.threadSafeReference()
is only required if there is an intermediate transform. Ifsubscribe(on:)
is used, it should always be the first operation in the pipeline.Create this publisher using the
See morechangesetPublisher
property on RealmCollection.Declaration
Swift
public class CollectionChangesetWithToken<Collection, T> : Publisher where Collection : RealmCollection
-
A helper publisher created by calling
See more.threadSafeReference()
on a publisher which emitsRealmCollectionChange
.Declaration
Swift
@frozen public struct MakeThreadSafeCollectionChangeset<Upstream, T> : Publisher where Upstream : Publisher, T : RealmCollection, Upstream.Output == RealmCollectionChange<T>
-
A publisher which delivers thread-confined collection changesets to a serial dispatch queue.
Create using
.threadSafeReference().receive(on: queue)
on a publisher that emitsRealmCollectionChange
.Declaration
Swift
@frozen public struct DeferredHandoverCollectionChangeset<Upstream, T, S> : Publisher where Upstream : Publisher, T : RealmCollection, S : Scheduler, Upstream.Output == RealmCollectionChange<T>