I don’t quite understand what you are trying to do (and I don’t have any documents to transmit), but Observables.Concat, what are you after?
var seq1 = Observable.Range(1, 20);
var seq2 = Observable.Range(21, 20);
var both = seq1.Concat(seq2);
both.Subscribe(i => Console.WriteLine(i));
(I just check that this works :)
source
share