kotlin-extensions / io.realm.kotlin / io.realm.RealmResults

io. 域

toChangesetFlow

返回监控此 RealmResults 变更的Flow 。 它将在订阅时发出当前的 RealmResults。 每次更新RealmResults 时,都会发送一个CollectionChange ,由 RealmResults 及其相应的OrderedCollectionChangeSet对组成。 首次发出 RealmResults 时,变更集将为null

fun <T : RealmModel> RealmResults<T>.toChangesetFlow(): Flow<CollectionChange<RealmResults<T>>>

toFlow

返回监控此 RealmResults 变更的Flow 。 订阅时,它将发出当前的 RealmResults。 RealmResults 将在 RealmResults 更新时不断发出 - onCompletion将永远不会被调用。

fun <T : RealmModel> RealmResults<T>.toFlow(): Flow<RealmResults<T>>