Native Reactive Stream with JDK 9
Full Featured (30 min.)
Native Reactive Streams with JDK 9 (and beyond)
Starting from JDK 9, you can use (and enjoy) the architectural concept of Reactive Streams (RS) native-style. No need to use any 3rd party library (like RX Java and a'like..)
The RS model offered by the JDK offers asynchronous publishing of events, giving the clients the ability to dictate the pace of the events consumption (a.k.a back-pressure), allows chaining of several "processors" as part of the RS pipeline and many more features.
In the session I will demonstrate how it works and behaves, what are the strengths (and weaknesses...) of this feature and an example how it can be used in real system.