-
i have some observables ready$
buildModules$ I want to chain these observables so that ready$ is called first always, and buildModules$ calls after. ready$.pipe(
switchMapTo(() => buildModules$)
) But I feel like there could be a better way to tackle this. |
Beta Was this translation helpful? Give feedback.
Answered by
demensky
Jul 11, 2023
Replies: 2 comments
-
In the example below, the subscription to concat(
ready$.pipe(ignoreElements()),
buildModules$,
) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jacoobes
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In the example below, the subscription to
buildModules$
will happen only aftercomplete
happens inready$
. Events fromready$
will be completely ignored.