``` textChanges(edittext) .map(CharSeq...
# android
l
Copy code
textChanges(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?
😶 1