如何用协程代替RX节流阀最后?

时间:2019-06-13 08:23:52

标签: android kotlin rx-java2 kotlin-coroutines

如何将协程转换为valveLatest()运算符?

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

0 个答案:

没有答案