Docs: flatMapConcat (#28584)

This commit is contained in:
Christopher Batey 2020-04-27 15:46:16 +01:00 committed by GitHub
parent c2945a3e7f
commit 23ea1a4fed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 84 additions and 4 deletions

View file

@ -0,0 +1,35 @@
/*
* Copyright (C) 2019-2020 Lightbend Inc. <https://www.lightbend.com>
*/
package jdocs.stream.operators.sourceorflow;
import akka.NotUsed;
import akka.actor.ActorSystem;
import akka.stream.javadsl.Source;
import java.util.Arrays;
public class FlatMapConcat {
private static ActorSystem system = null;
// #flatmap-concat
// e.g. could be a query to a database
private Source<String, NotUsed> lookupCustomerEvents(String customerId) {
return Source.from(Arrays.asList(customerId + "-event-1", customerId + "-event-2"));
}
// #flatmap-concat
void example() {
// #flatmap-concat
Source.from(Arrays.asList("customer-1", "customer-2"))
.flatMapConcat(this::lookupCustomerEvents)
.runForeach(System.out::println, system);
// prints - events from each customer consecutively
// customer-1-event-1
// customer-1-event-2
// customer-2-event-1
// customer-2-event-2
// #flatmap-concat
}
}