Add grouped example to akka-docs (#25468) (#28013)

This commit is contained in:
Lim Chee Hau 2019-10-18 08:51:31 +02:00 committed by Johan Andrén
parent 5db785fa15
commit 3fb6e77fd2
3 changed files with 56 additions and 0 deletions

View file

@ -252,4 +252,23 @@ class SourceOrFlow {
.map(p -> new Pong(p.id));
// #collectType
}
void groupedExample() {
// #grouped
Source.from(Arrays.asList(1, 2, 3, 4, 5, 6, 7))
.grouped(3)
.runForeach(System.out::println, materializer);
// [1, 2, 3]
// [4, 5, 6]
// [7]
Source.from(Arrays.asList(1, 2, 3, 4, 5, 6, 7))
.grouped(3)
.map(g -> g.stream().reduce(0, Integer::sum))
.runForeach(System.out::println, materializer);
// 6 (= 1 + 2 + 3)
// 15 (= 4 + 5 + 6)
// 7 (= 7)
// #grouped
}
}