parent
a9d545bf2b
commit
8027f2123b
3 changed files with 82 additions and 0 deletions
|
|
@ -0,0 +1,33 @@
|
|||
/*
|
||||
* Copyright (C) 2019 Lightbend Inc. <https://www.lightbend.com>
|
||||
*/
|
||||
|
||||
package docs.stream.operators.sourceorflow
|
||||
|
||||
import akka.stream.scaladsl.Source
|
||||
|
||||
import scala.concurrent.ExecutionContext
|
||||
|
||||
object MapConcat {
|
||||
|
||||
def mapConcat(): Unit = {
|
||||
import akka.actor.ActorSystem
|
||||
|
||||
implicit val system: ActorSystem = ActorSystem()
|
||||
implicit val ec: ExecutionContext = system.dispatcher
|
||||
|
||||
//#map-concat
|
||||
def duplicate(i: Int): List[Int] = List(i, i)
|
||||
|
||||
Source(1 to 3).mapConcat(i => duplicate(i)).runForeach(println)
|
||||
// prints:
|
||||
// 1
|
||||
// 1
|
||||
// 2
|
||||
// 2
|
||||
// 3
|
||||
//#map-concat
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue