Skip to content

Instantly share code, notes, and snippets.

@jwkidd3
Created January 18, 2017 22:15
Show Gist options
  • Save jwkidd3/1a6543a98267b40b361076fc183438cc to your computer and use it in GitHub Desktop.
Save jwkidd3/1a6543a98267b40b361076fc183438cc to your computer and use it in GitHub Desktop.
Observable.range(0, 5)
.window(3, 1)
.flatMap(o -> o.toList())
.subscribe(System.out::println);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment