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 4 ways I can help you:

  1. If you want a one-stop shop to help you quickly level up your serverless skills, you should check out my Production-Ready Serverless workshop. Over 20 AWS Heroes & Community Builders have passed through this workshop, plus 1000+ students from the likes of AWS, LEGO, Booking, HBO and Siemens.
  2. If you want to learn how to test serverless applications without all the pain and hassle, you should check out my latest course, Testing Serverless Architectures.
  3. If you’re a manager or founder and want to help your team move faster and build better software, then check out my consulting services.
  4. If you just want to hang out, talk serverless, or ask for help, then you should join my FREE Community.

 


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 *