Sink.reduce
Apply a reduction function on the incoming elements and pass the result to the next invocation.
Signature¶
Description¶
Apply a reduction function on the incoming elements and pass the result to the next invocation. The first invocation receives the two first elements of the flow.
Materializes into a Future
that will be completed by the last result of the reduction function.
Example¶
sourceval source = Source(1 to 10)
val result = source.runWith(Sink.reduce[Int]((a, b) => a + b))
result.map(println)(system.dispatcher)
// will print
// 55
sourceSource<Integer, NotUsed> ints = Source.from(Arrays.asList(1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
CompletionStage<Integer> sum = ints.runWith(Sink.reduce((a, b) -> a + b), system);
sum.thenAccept(System.out::println);
// 55
Reactive Streams semantics¶
cancels never
backpressures when the previous reduction function invocation has not yet completed
1.0.3