Skip to content

Instantly share code, notes, and snippets.

@SeongUgJung
Created October 6, 2015 11:55
Show Gist options
  • Save SeongUgJung/f4565e7691dbc6d9a8f0 to your computer and use it in GitHub Desktop.
Save SeongUgJung/f4565e7691dbc6d9a8f0 to your computer and use it in GitHub Desktop.
Observable.just(1,2,3)
.onBackpressureBuffer()
.observeOn(Schedulers.computation())
.subscribe(input -> {
doSomething();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment