RxJava运算符使用节流阀最新,与众不同的UntilChanged转换为Kotlin协程

时间:2019-01-31 09:38:45

标签: android kotlin rx-java2 kotlin-coroutines

将此RxJava链转换为Kotlin Coroutines的最佳方法是什么?

RxTextView
    .textChanges(inputEditText)
    .map { it.toString() }
    .throttleLatest(500, TimeUnit.MILLISECONDS, true)
    .distinctUntilChanged()
    .subscribe({ text ->
        // More logic here
    }, { error ->
        // Error handling
    })

0 个答案:

没有答案