Rx framework – IObservable<T>.Merge

In my previous post I used the IObservable<T>.Zip extension method in the Drag-and-Drop example, which takes two observable collections and runs a function over them to return a new observable collection of potentially a different type.

But what if you just want to simply merge the two observable collections into one stream? Well, Rx API has another extension method called Merge. To use it you can either invoke it as extension method:

var zs = xs.Merge(ys);

or you can invoke it as static method on more than two observable collections:

var zs = Observable.Merge(xs, ys, us, vs);

To use the Merge method, all the observable collections being merged need to be of the same type.

There are two things you should keep in mind:

1. OnCompleted is fired on the composite observable collection (zs) at the point the last OnCompleted is fired on any of the merged observable collections:

image

2. OnError is fired on the composite observable collection (zs) at the point the first OnError is fired on any of the merged observable collections, any subsequent values on the merged observable collection will not make it onto the composite collection:

image

3 thoughts on “Rx framework – IObservable<T>.Merge”

  1. Pingback: Rx framework — IObservable<T>.CombineLatest | theburningmonk.com

  2. Pingback: Rx framework — IObservable<T>.Concat | theburningmonk.com

  3. Pingback: Rx framework – IObservable<T>.Repeat | theburningmonk.com

Leave a Comment

Your email address will not be published. Required fields are marked *