I am new to the ReactiveX library (I use its scala variant, RxScala).
I have an Observable
that emits values at high rate. I would like to apply a function to all values of the Observable
(map
). The function, which I use in map
, is computationally rather expensive.
Is there a way to have a thread pool for computing the map
phase in parallel?