Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Scala Reactive Programming

You're reading from   Scala Reactive Programming Build scalable, functional reactive microservices with Akka, Play, and Lagom

Arrow left icon
Product type Paperback
Published in Feb 2018
Publisher Packt
ISBN-13 9781787288645
Length 552 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Rambabu Posa Rambabu Posa
Author Profile Icon Rambabu Posa
Rambabu Posa
Arrow right icon
View More author details
Toc

Table of Contents (16) Chapters Close

Preface 1. Getting Started with Reactive and Functional Programming FREE CHAPTER 2. Functional Scala 3. Asynchronous Programming with Scala 4. Building Reactive Applications with Akka 5. Adding Reactiveness with RxScala 6. Extending Applications with Play 7. Working with Reactive Streams 8. Integrating Akka Streams to Play Application 9. Reactive Microservices with Lagom 10. Testing Reactive Microservices 11. Managing Microservices in ConductR 12. Reactive Design Patterns and Best Practices 13. Scala Plugin for IntelliJ IDEA 14. Installing Robomongo 15. Other Books You May Enjoy

Akka Streams HelloWorld example

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:

  1. Create a Scala SBT project in your favorite IDE:
      Project Name: akka-streams-scala-helloworld-app 
  1. Add the akka-streams dependency in the build.sbt file:

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, we are using akka-stream "2.5.9", the latest stable version.

  1. Create a AkkaStreams HelloWorld App with Source ~> Sink...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime