Skip to content

Instantly share code, notes, and snippets.

@seyedjafariy
Created March 18, 2018 06:16
Show Gist options
  • Save seyedjafariy/07818cdf56ce0d1ffc0b334efae57e76 to your computer and use it in GitHub Desktop.
Save seyedjafariy/07818cdf56ce0d1ffc0b334efae57e76 to your computer and use it in GitHub Desktop.
Reactive Operators Example-3
Observable.range(0, 50)
.buffer(10)
.subscribe(integers -> {
Log.d("tag", "list size recevied after buffering: "+integers.size());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment