web-dev-qa-db-ja.com

RxAndroidを使用してKotlin言語でいくつかのオブザーバブルを圧縮する方法

何か問題があります。私はRxJava/RxKotlin/RxAndroidの初心者であり、いくつかの機能を理解していません。例えば:

import rus.pifpaf.client.data.catalog.models.Category
import rus.pifpaf.client.data.main.MainRepository
import rus.pifpaf.client.data.main.models.FrontDataModel
import rus.pifpaf.client.data.product.models.Product
import rx.Observable
import rx.Single
import rx.lang.kotlin.observable
import Java.util.*


class MainInteractor {

    private var repository: MainRepository = MainRepository()

    fun getFrontData() {

        val cats = getCategories()
        val day = getDayProduct()
        val top = getTopProducts()

        return Observable.Zip(cats, day, top, MainInteractor::convert)
    }

    private fun getTopProducts(): Observable<List<Product>> {
        return repository.getTop()
                .toObservable()
                .onErrorReturn{throwable -> ArrayList() }

    }

    private fun getDayProduct(): Observable<Product> {
        return repository.getSingleProduct()
                .toObservable()
                .onErrorReturn{throwable -> Product()}

    }

    private fun getCategories(): Observable<List<Category>> {
        return repository.getCategories()
                .toObservable()
                .onErrorReturn{throwable -> ArrayList() }
    }

    private fun convert(cats: List<Category>, product: Product, top: List<Product>): FrontDataModel {

    }
}

次に、MainInteractor :: convertAndroid studio教えてください)を使用します

enter image description here

私は多くの亜種を試し、何が欲しいのかを理解しようとしましたが、成功しませんでした。私を助けてください...よろしく。

9
Scrobot

関数参照をラムダで置き換えるだけです:

return Observable.Zip(cats, day, top, { c, d, t -> convert(c, d, t) })

そして、関数の戻り値の型を明示的に宣言することを忘れないでください:

fun getFrontData(): Observable<FrontDataModel> {
    ...
17

ラムダのLikeでFunction3タイプを明示的に指定することもできます:

Observable.Zip(cats
               ,day
               ,top
               ,Function3<List<Product>, Product, List<Category>, FrontDataModel> 
                         { cats, day, top -> convert(cats, day, top) }

intelliJアイデアショートカット alt + enter を操作して、より多くのアクションを表示し、高次関数の表示形式を変更します。

enter image description here

なぜFunction3なのか?

2つの入力パラメーターがある場合は、機能インターフェイスに従います BiFunction であり、3つの入力がある場合は Function であり、リストは続きます。