August 2018
Intermediate to advanced
372 pages
9h 29m
English
Flux represents an asynchronous sequence of 0 to n items.
We will again borrow a diagram from the Project Reactor documentation, which explains how a Flux object emits items:

The preceding diagram illustrates the following process:
In the following example, we will first convert each produced value to uppercase, in order to deliver the values:
@Testpublic void givenAListOfCapitalizedStrings_WhenTheFlatMapConvertsToUpperCaseTheStrings_ThenTheStringsAreInUpperCase() throws Exception { List<String> ...Read now
Unlock full access