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
|
|
@ -0,0 +1,23 @@
|
|||
/*
|
||||
* Copyright (C) 2020 Lightbend Inc. <https://www.lightbend.com>
|
||||
*/
|
||||
|
||||
package docs.stream.operators.sink
|
||||
|
||||
import akka.actor.ActorSystem
|
||||
import akka.stream.scaladsl.{ Sink, Source }
|
||||
|
||||
import scala.concurrent.{ ExecutionContextExecutor, Future }
|
||||
|
||||
object Fold {
|
||||
implicit val system: ActorSystem = ???
|
||||
implicit val ec: ExecutionContextExecutor = system.dispatcher
|
||||
def foldExample: Future[Unit] = {
|
||||
//#fold
|
||||
val source = Source(1 to 100)
|
||||
val result: Future[Int] = source.runWith(Sink.fold(0)((acc, element) => acc + element))
|
||||
result.map(println)
|
||||
//5050
|
||||
//#fold
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue