lam bui
05/05/2022, 7:55 AMtextChanges(edittext)
.map(CharSequence::toString)
.debounce(TIME_DELAY_SEARCH, TimeUnit.MILLISECONDS)
.observeOn(AndroidSchedulers.mainThread())
.distinctUntilChanged()
.subscribe { text ->
progressVisible.showIndicator()
setSearchText(text)
}.addTo(disposables)
I'm having issue, should debouce or throttleLatest for textChange?