Skip to Content
Scala Reactive Programming
book

Scala Reactive Programming

by Rambabu Posa
February 2018
Intermediate to advanced
552 pages
13h 46m
English
Packt Publishing
Content preview from Scala Reactive Programming

Developing the Reactive Chat System

In this section, we will develop and discuss our Reactive Chat System using Play/AkkaStreams/Scala Technology Stack.

Perform the following steps to explore Akka Streams Dynamic components:

  1. Create a Scala SBT project in your favorite IDE:
      Project Name : play-akka-streams-scala-chatroom-app
  1. Add the akka-streams dependency in the build.sbt file, as shown here:

build.sbt:

      name := "play-akka-streams-scala-chatroom-app"      scalaVersion := "2.12.4"      val akkaVersion = "2.5.9"      lazy val root = (project in file(".")).enablePlugins(PlayScala)      crossScalaVersions := Seq("2.11.12", "2.12.4")      libraryDependencies += guice      libraryDependencies += "org.webjars" %% "webjars-play" % "2.6.1" libraryDependencies += "org.webjars" ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Scala Programming Projects

Scala Programming Projects

Mikael Valot, Nicolas Jorand
Learning Scala

Learning Scala

Jason Swartz
Functional Programming in Scala

Functional Programming in Scala

Runar Bjarnason, Paul Chiusano

Publisher Resources

ISBN: 9781787288645Supplemental Content