I was wondering the best way to achieve this.
If i have two observables A & B, and i want to process the next B logic after the A has completed his next logic.
I'm currently using combineLatest for that purpose.
Any best choice?
Thanks!
I would use b$.pipe(withLatestFrom(a$))
. This way you can see things clearly. But combineLatest
works fine.