A source that aggregates multiple sources together.
*
The sources are used in the order they are provided,
SequentialMultiSource does not fetch from the next source
until the current source is exhausted.
E.g. if the given sources are [A, B, C],
SequentialMultiSource will fetch from A until it is exhausted,
then fetch from B until it is exhausted,
then fetch from C until it is exhausted.
A source that aggregates multiple sources together. * The sources are used in the order they are provided, SequentialMultiSource does not fetch from the next source until the current source is exhausted.
E.g. if the given sources are [A, B, C], SequentialMultiSource will fetch from A until it is exhausted, then fetch from B until it is exhausted, then fetch from C until it is exhausted.
See
newSequentialMultiSource