Hi! Is there a guarantee that `Observable.zip(obse...
# rx
d
Hi! Is there a guarantee that
Observable.zip(observable1, observable2)
will wait for first one to emit an item, then the second one. If
observable1
and
observable2
encapsulate http requests, can I count on first being send before second in a
concat
-like manner? Documentation does not mention anything about the order...