July 2018
Intermediate to advanced
268 pages
7h 36m
English
Mono<T> is a Publisher<T> that supports 0..1 elements.
The definition of Mono is as follows:
public abstract class Mono<T> extends Object implements Publisher<T>
As detailed in the documentation, the following figure shows the workings of Mono:

Mono<Void> should be used for a Publisher that completes with no value. The documentation explains each method and how it works using a marble diagram, which is self-explanatory. Again, this type is also supported ...
Read now
Unlock full access