Given this piece of code:

var loadAll =
   Observable.ForkJoin(
      service1.FindBooksAsObservable().Select(s => s),
      service2.FindBooksAsObservable().Select(s => s),
      service3.FindBooksAsObservable().Select(s => s)
);

loadAll.Subscribe(
   result =>
   {
      var aggregatedListOfBooks = result.SelectMany(b => b);
   });

As you can see, the problem is each FindBooksAsObservable() method returns an IObservable<IEnumerable<Book>>, thus the result variable in the Subscribe() is an Array of IEnumerable<Book>.

Is there any other way of aggregating the result of the ForkJoin()? I was hoping to use something like Merge() along with the ForkJoin.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Assuming all three services return a list of Books, you can use SelectMany to merge the lists:

IObservable<Book> loadAll = 
    Observable.ForkJoin(
        service1.FindBooksAsObservable().Select(s => s),
        service2.FindBooksAsObservable().Select(s => s),
        service3.FindBooksAsObservable().Select(s => s)
    )
    .Select(books => books.SelectMany(list => list).ToList());

loadAll.Subscribe(
    book => { /* will be called once with a single list of all items */ });

You can remove the ToList() call if you don't require the output to be a list.

link|improve this answer
No, actually want i'd like is to receive all the books from all the services in a single list. – cadessi Dec 11 '10 at 12:25
@maelcumx - See updated, though I've assumed that you don't need to remove duplicates. – Richard Szalay Dec 11 '10 at 16:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.