gpt4 book ai didi

android - Zipping Room Flowable 阻止更新

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:55:53 25 4
gpt4 key购买 nike

我的存储库中有一个 getPlaces 方法:

override fun getPlaces(filter: FilterRequest): Flowable<List<Place>> {
return from(placesApi.filter(filter))
.doOnSuccess {
placesDao.savePlaces(it)
}
.flatMapPublisher { it ->
placesDao.getPlaces(it.map { it.placeId })
}
}

此方法从 api 收集结果,然后将结果保存在数据库中,并返回一个 flowable,其中包含 id 从数据库中检索到的那些地方作为 Flowable:

@Query("select * from Places where placeId in (:placesIds)")
fun getPlaces(placesIds: List<String>) : Flowable<List<Place>>

现在每次我更改其中一个对象时,我都可以在整个应用程序中看到更改。

现在我想将这些结果与距当前位置的距离相结合,如下所示:

 override fun addDistanceToPlaces(req: Flowable<List<Place>>): Flowable<List<Place>> {
return req
.zipWith(getLastLocation().toFlowable(BackpressureStrategy.LATEST),
BiFunction<List<Place>, Location, List<Place>> { places, location ->
places.forEach {
var placeLocation = Location(it.placeName)
placeLocation.latitude = it.latitude
placeLocation.longitude = it.longitude

it.distance = location.distanceTo(placeLocation)
}
places.sortedBy {
it.distance
}
})
.onErrorResumeNext { t: Throwable ->
req
}

}

这行得通,但是如果我应用它,我会丢失来自 Room 的“更新”;更改不会通知观察者,因此我必须手动刷新。

为什么会这样? zip 不应该只是合并两个来源的排放量吗?

最佳答案

您的问题是尝试为您的用例使用 zip 运算符。 Zip 通过配对输入 observable 的值来发出。它不会针对单个 observable 的每次更改而发出,而是在它们都发出时发出。检查它的弹珠以帮助您形象化它的行为:

http://reactivex.io/documentation/operators/zip.html

因此在您的情况下,Room Observable 正在发射到您的 zip 函数中,但位置 Observable 没有更新,因此您不会调用您的函数。

我认为您正在寻找 combineLatest 运算符。这将等到 Room Observable 和 Location Observable 都发送一次,然后任一个 observable 都可以发射,你的 combine 函数将被调用,随后的值将发射到你的应用程序。

关于android - Zipping Room Flowable 阻止更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50818317/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com