Skip to content

Instantly share code, notes, and snippets.

@Gerlac
Created November 13, 2017 08:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Gerlac/176021082cd65500fadfecc691e2c1d3 to your computer and use it in GitHub Desktop.
Save Gerlac/176021082cd65500fadfecc691e2c1d3 to your computer and use it in GitHub Desktop.
HomePresenter debounce operator
searchTermUpdate
.debounce(DELAY_BETWEEN_SEARCH_TERM_REQUEST, TimeUnit.MILLISECONDS)
.switchMapSingle { searchTerm -> suggestionsRepository.getSearchTermSuggestions(searchTerm) }
.subscribe { suggestions -> view.showSearchSuggestions(suggestions) })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment