February 2018
Intermediate to advanced
552 pages
13h 46m
English
Before integrating Akka Streams into our Play web application, in this section, we will develop and explore Akka Streams Dynamic components with one simple example.
Perform the following steps to explore Akka Streams Dynamic components:
Project Name: akka-dynamic-streams-scala-app.
build.sbt
name := "akka-dynamic-streams-scala-app" version := "1.0.0" scalaVersion := "2.12.4" libraryDependencies ++= Seq( "com.typesafe.akka" %% "akka-stream" % "2.5.9" )
object AkkaStreamsMergeHubApp extends App{ implicit val actorSystem = ActorSystem("MergeHubSystem") ...Read now
Unlock full access