Fix: DumpLatest( <IObservable<IObservable<T>> )
The following code dumps the initial state of the IObservable<Int64>, but does not refresh it as new elements are added:
var i = Observable.Interval(TimeSpan.FromSeconds(1));
var w = i.Window(10);
w.DumpLatest();
As a workaround, adding the following line of code seems to fix the problem:
w.Subscribe(wi => wi.DumpLatest());
1
vote
![](https://secure.gravatar.com/avatar/d24c3fdde8ebffec4c7494a574fd05ca?size=40&default=https%3A%2F%2Fassets.uvcdn.com%2Fpkg%2Fadmin%2Ficons%2Fuser_70-6bcf9e08938533adb9bac95c3e487cb2a6d4a32f890ca6fdc82e3072e0ea0368.png)