Rx framework – IObservable<T>.Merge

Yan Cui

I help clients go faster for less using serverless technologies.

This article is brought to you by

The real-time data platform that empowers developers to build innovative products faster and more reliably than ever before.

Learn more

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. Production-Ready Serverless: Join 20+ AWS Heroes & Community Builders and 1000+ other students in levelling up your serverless game. This is your one-stop shop for quickly levelling up your serverless skills.
  2. Do you want to know how to test serverless architectures with a fast dev & test loop? Check out my latest course, Testing Serverless Architectures and learn the smart way to test serverless.
  3. I help clients launch product ideas, improve their development processes and upskill their teams. If you’d like to work together, then let’s get in touch.
  4. Join my community on Discord, ask questions, and join the discussion on all things AWS and Serverless.

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 *