I'm trying to understand the difference between Reactive and ReactiveStreams, specifically in the context of RxJava ?
The most I could figure out was that Reactive Streams has some notion of backpressure in the specification but that already exists in RxJava/Reactive with the request(n)
interface.
Wouldn't mind a ELI5 answer.