moqtail-ts
    Preparing search index...

    Interface PastObjectSource

    Source of already-produced (historical) objects for a track. Backed by an ObjectCache allowing range retrieval using protocol Locations. Implementations MUST return objects in ascending location order and MAY return an empty array if the requested window is outside the cached range.

    interface PastObjectSource {
        cache: ObjectCache;
        getRange(start?: Location, end?: Location): Promise<MoqtObject[]>;
    }

    Implemented by

    Index

    Properties

    Methods

    Properties

    Underlying cache from which objects are served

    Methods