Rx framework – IObservable<T>.Repeat
Having looked at a number of extension methods in Rx which allows you to combine two observable collections in some way, namely: Zip Merge CombineLatest Concat Catch OnErrorResumeLast There are also extension methods which allow you to repeatedly subscribe to the same observable collection, the suitably name IObservable<T>.Repeat method. If the repeated observable collection is …