I have 2 Observables, a
and b
. I want to combine them like so:
a: ---x---------x-------x------|
b: ------x-x-x----x-x-x---x-x--|
o: ------x--------x-------x----|
That is, I want the result Observable to emit on the first emission of b
that comes directly after an emission of a
.
I'm using reactivex/rxjs, but just a conceptual hint is more than enough. Thank you in advance!