RxJS: How to have one Observer process multiple Observables?
问题 I am working with a framework that calls a function I implement. I would like the parameter of this function to be converted to an Observable, and sent through a sequence of Observers. I thought I could use a Subject for this, but it isn't behaving as I expected. To clarify, I have something like the following code. I thought Option 1 below would work, but so far I am settling for Option 2 , which doesn't seem idiomatic at all. var eventSubject = new Rx.Subject(); var resultSource =