1
vote
1answer
52 views

RxJS is to events as promises are to async

In Requesting a clear, picturesque explanation of Reactive Extensions (RX)? I asked about what RX is all about, and I think, thanks to the provided answers I now got the idea. In the referenced ...
2
votes
0answers
401 views

RxJS: Recursive list of observables and single observer

I've been having some trouble with a recursive chain of observables. I am working with RxJS, which is currently in version 1.0.10621, and contains most basic Rx functionality, in conjunction with Rx ...
0
votes
1answer
59 views

Rx Publish() breaks IObservable of XDocuments

I have the following Rx Query that produces a IObservable problem is it does not work with Publish() so as the number of subscribers increases so does the memmory load // Works Observable ...
1
vote
1answer
107 views

Distinct between possible streams, looking for a clean solution

I'm trying to use RxJS in some GUI scenarios. I came across an interesting case. I have a widget where one can view, edit and create entities. When you click on the "AddNewEntity" Button. The ...