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.

interface SequentialMultiSource {
    sources: Source[];
    type: string;
}

Hierarchy (view full)

Properties

Properties

sources: Source[]

The sources to aggregate.

type: string