I want to synchronously emit two Observable objects (which are asynchronous), one after the other where it returns the first emitted Observable object. If the first
You can also use rx.observables.BlockingObservable e.g.:
BlockingObservable.from(/**/).single();