Rx framework – IObservable<T>.Merge

Yan Cui

I help clients go faster for less using serverless technologies.

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


Whenever you’re ready, here are 3 ways I can help you:

  1. Production-Ready Serverless: Join 20+ AWS Heroes & Community Builders and 1000+ other students in levelling up your serverless game.
  2. Consulting: If you want to improve feature velocity, reduce costs, and make your systems more scalable, secure, and resilient, then let’s work together and make it happen.
  3. Join my FREE Community on Skool, where you can ask for help, share your success stories and hang out with me and other like-minded people without all the negativity from social media.

 

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 *