Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. source1$.pipe(
  2. switchMap(value => makeSomeRequest(value))
  3. )
  4. source1$.pipe(
  5. switchMap(() => source2$)
  6. )
  7. source1$.pipe(
  8. switchMap((value) => [source2$, makeSomeRequest(value)])
  9. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement