Skip to content

Instantly share code, notes, and snippets.

@autrilla
Last active March 26, 2016 22:25
Show Gist options
  • Select an option

  • Save autrilla/de88bde5fe84f18a5767 to your computer and use it in GitHub Desktop.

Select an option

Save autrilla/de88bde5fe84f18a5767 to your computer and use it in GitHub Desktop.
private fun updateProbes() {
Observable.just(1).delay(5, TimeUnit.SECONDS)
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe({}, {}, { swipeRefreshLayout.isRefreshing = false })
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment