A source that aggregates multiple sources together.

The sources are used in a random fashion.

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

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

Hierarchy (view full)

Properties

Properties

sources: Source[]

The sources to aggregate.

type: string