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,31 @@
/*
* Copyright (C) 2020 Lightbend Inc. <https://www.lightbend.com>
*/
package docs.stream.operators.sourceorflow
import akka.NotUsed
import akka.actor.ActorSystem
import akka.stream.scaladsl.Source
object FlatMapConcat {
implicit val system: ActorSystem = ActorSystem()
// #flatmap-concat
val source: Source[String, NotUsed] = Source(List("customer-1", "customer-2"))
// e.g. could b a query to a database
def lookupCustomerEvents(customerId: String): Source[String, NotUsed] = {
Source(List(s"$customerId-event-1", s"$customerId-event-2"))
}
source.flatMapConcat(customerId => lookupCustomerEvents(customerId)).runForeach(println)
// prints - events from each customer consecutively
// customer-1-event-1
// customer-1-event-2
// customer-2-event-1
// customer-2-event-2
// #flatmap-concat
}