February 2019
Intermediate to advanced
442 pages
11h 46m
English
Let's learn more about the reactor API with a practical example. Create a new Maven project similar to what we created in the Anatomy of RxJava section. The current version of the Project Reactor at the time of writing is 3.2.6. We need to provide a Maven dependency for the reactor as follows:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>reactor-demo</groupId> <artifactId>simple-reactor-demo</artifactId> <version>0.0.1-SNAPSHOT</version> <name>Smiple Reactor Dmo</name> <dependencies> <dependency> <groupId>io.projectreactor</groupId> ...