Book Image

Scala Reactive Programming

By : Rambabu Posa
Book Image

Scala Reactive Programming

By: Rambabu Posa

Overview of this book

Reactive programming is a scalable, fast way to build applications, and one that helps us write code that is concise, clear, and readable. It can be used for many purposes such as GUIs, robotics, music, and others, and is central to many concurrent systems. This book will be your guide to getting started with Reactive programming in Scala. You will begin with the fundamental concepts of Reactive programming and gradually move on to working with asynchronous data streams. You will then start building an application using Akka Actors and extend it using the Play framework. You will also learn about reactive stream specifications, event sourcing techniques, and different methods to integrate Akka Streams into the Play Framework. This book will also take you one step forward by showing you the advantages of the Lagom framework while working with reactive microservices. You will also learn to scale applications using multi-node clusters and test, secure, and deploy your microservices to the cloud. By the end of the book, you will have gained the knowledge to build robust and distributed systems with Scala and Akka.
Table of Contents (16 chapters)

Referential transparency

In Scala, referential transparency (RT) means that an expression or a function call may be replaced by its value, without changing the behavior of the application.

A value may be replaced by an expression or a function call without changing the behavior of the application.

We will explore these two points with some simple examples now.

Let's assume that we are using the y = x + 1 expression in our application:

scala> val x = 10 
x: Int = 10 
 
scala> val y = x + 1 
y: Int = 11 
 
scala> val y = 11 
y: Int = 11 

Here, when we replace an expression x+1 with its value 11, it does not change any behavior of the y in our application:

scala> val y = 11 
y: Int = 11 
 
scala> def addOne(a: Int) = a + 1 
addOne: (a: Int)Int 
 
scala> val y = addOne(x) 
y: Int = 11 

Here, the value of y is replaced by a function called addOne(). In this case...