what’s the idiomatic way of handling nested `Obser...
# rx
r
what’s the idiomatic way of handling nested
Observable
dependencies? I’ve seen places where people are using
blockingFirst()
or
blockingGet()
inside
map
and
flatmap
and I’ve also seen cases where people are using just using
flatmap
and
map
with
doOnNext
calls ? Whats the better approach?