I have a stream of streams. I'd like to know to transform this into a live count of many inner streams are currently live, i.e. not completed or errored.
How would I implement CountLiveStreams?
var source = new Subject<IObservable<Unit>>();
IObservable<int> count = source.CountLiveStreams();
Thanks!