February 2018
Intermediate to advanced
552 pages
13h 46m
English
In this section, we will develop our first Akka Streams simple and old-fashioned HelloWorld application. In this example, we will use or experiment with only two of the Akka Streams API components, as shown here:

Perform the following steps to experiment with this example:
Project Name: akka-streams-scala-helloworld-app
build.sbt:
name := "akka-streams-scala-helloworld-app"
version := "1.0.0"
scalaVersion := "2.12.2"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-stream" % "2.5.9"
)
Here, ...