toChangesetFlow |
Returns a Flow that monitors changes to this RealmResults. It will emit the current
RealmResults upon subscription. For each update to the RealmResults a CollectionChange
consisting of a pair with the RealmResults and its corresponding OrderedCollectionChangeSet
will be sent. The changeset will be fun <T : RealmModel> RealmResults<T>.toChangesetFlow(): Flow<CollectionChange<RealmResults<T>>> |
toFlow |
Returns a Flow that monitors changes to this RealmResults. It will emit the current
RealmResults when subscribed to. RealmResults will continually be emitted as the RealmResults are
updated - fun <T : RealmModel> RealmResults<T>.toFlow(): Flow<RealmResults<T>> |