- Java Standard Edition, JDK 8 or above
- IntelliJ IDEA IDE, 2018.1 or above
The GitHub link for this chapter is https://github.com/PacktPublishing/Hands-On-Reactive-Programming-with-Reactor/tree/master/Chapter03.
The GitHub link for this chapter is https://github.com/PacktPublishing/Hands-On-Reactive-Programming-with-Reactor/tree/master/Chapter03.
Before we jump into working with various operators, let's first generate a stream of data. In order to do this, let's revisit our Fibonacci series from Chapter 1, Getting Started with Reactive Streams.
In number theory, Fibonacci numbers are characterized by the fact that every number after the first two numbers is the sum of the two preceding ones (that is, 0 , 1 , 1 , 2 , 3 , 5 , 8 , 13 ,21 , 34 , 55 , 89 , 144, and so on).
The Flux generated API enables us to build...