A source that aggregates multiple sources together.

The sources are used in a round-robin fashion.

E.g. if the given sources are [A, B, C], RoundRobinMultiSource will fetch from A, then B, then C, then A, then B, then C, and so on.

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

Hierarchy (view full)

Properties

Properties

sources: Source[]

The sources to aggregate.

type: string