We're having an internal discussion on best RxJava...
# rx
f
We're having an internal discussion on best RxJava practises and one of the things we discuss is the usage of multiple operators in order to "improve readability". Example multiple
doOnNext
or even
map
. How expensive is it to add an extra
doOnNext
operator compared to doing everything in one? Is it micro optimizing?