Adding example of fold for sink #25468
This commit is contained in:
parent
b7640c3261
commit
ac648a5940
3 changed files with 42 additions and 0 deletions
|
|
@ -105,6 +105,15 @@ public class SinkDocExamples {
|
|||
// #lastOption-operator-example
|
||||
}
|
||||
|
||||
static void foldExample() {
|
||||
// #fold
|
||||
Source<Integer, NotUsed> source = Source.range(1, 100);
|
||||
CompletionStage<Integer> sum =
|
||||
source.runWith(Sink.fold(0, (res, element) -> res + element), system);
|
||||
sum.thenAccept(System.out::println);
|
||||
// #fold
|
||||
}
|
||||
|
||||
static void ignoreExample() {
|
||||
// #ignore
|
||||
Source<String, NotUsed> lines = readLinesFromFile();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue