Parallel Computing
Learn about parallel computing in Java.
We'll cover the following...
Parallel computing in Java
If we tie a Flowable to one Scheduler as in the previous lesson, it will run in succession, but not in parallel. To run each calculation in parallel, we could use flatMap
to break out each calculation into a separate Flowable
as follows: