February 2018
Intermediate to advanced
552 pages
13h 46m
English
As with our other chapters, we will start RxScala with a simple and standard HelloWorld example. In this section, we will develop a basic application and extend it further in the coming sections.
In this example, we will concentrate on only two components out of the three: Observable and Subscription.
Perform the following steps to develop and explore it:
build.sbt:
name := "rxscala-helloworld-app"
version := "0.1"
scalaVersion := "2.12.3"
libraryDependencies += "io.reactivex" %% "rxscala" % "0.26.5"
Read now
Unlock full access