Slide 15
Slide 15 text
15
REACTIVE AT MICROPROFILE
Reactive Streams
Operators
Add reactive to other specs
(Rest client, Fault Tolerance…)
REACTIVE
MESSAGING
Creates, Manipulates and consumes
reactive streams
return ReactiveStreams
.of("h", "e", "l", "l", “a")
.map(s -> s.toUpperCase())
.distinct()
.build();
}