Reactive Extensions API in depth: SelectMany
Today's installment of Reactive Extensions API in depth talks about SelectMany
Previous Reactive Extensions API in depth videos:
Marble Diagrams, Select and Where
Comments
- Anonymous
November 30, 2009
One thing to add, SelectMany doesn't begin until the first in the series begins. So if the second or third observables started firing before the first, those events would be lost. Only the events after the first observable fires are captured. Likewise, the only values captured from the third observable are those fired after the second observable fires.