Skip to content

Instantly share code, notes, and snippets.

@matdziu
Last active November 17, 2016 11:49
Show Gist options
  • Select an option

  • Save matdziu/86504f7ad95c24ac68c2a4e9f14b7255 to your computer and use it in GitHub Desktop.

Select an option

Save matdziu/86504f7ad95c24ac68c2a4e9f14b7255 to your computer and use it in GitHub Desktop.
RxSearch.fromSearchView(searchView)
.debounce(300, TimeUnit.MILLISECONDS)
.observeOn(AndroidSchedulers.mainThread())
.subscribe(query -> {
adapter.setNamesList(namesAPI.searchForName(query));
adapter.notifyDataSetChanged();
apiCallsTextView.setText("API CALLS: " + apiCalls++);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment