RxJava 2: Parallel Multiple Network Calls Made Easy

--

Picture by Jonathan Chng on Unsplash

In my previous blog, I have shown that how we could connect multiple network call together easily using RxJava 2. But there’s a drawback with the previous approach, as they are still called sequentially.

Let see how we could make them parallel.

Connecting 2 networks call

The slower version

--

--