moqtail-ts
    Preparing search index...

    Interface LiveObjectSource

    Push-oriented live object feed. Wraps a ReadableStream plus lightweight event subscription helpers. Implementations advance largestLocation monotonically as objects arrive.

    interface LiveObjectSource {
        largestLocation: undefined | Location;
        stream: ReadableStream<MoqtObject>;
        onDone(listener: () => void): () => void;
        onNewObject(listener: (obj: MoqtObject) => void): () => void;
        stop(): void;
    }

    Implemented by

    Index

    Properties

    largestLocation: undefined | Location

    Highest (latest) location observed so far; undefined until first object

    stream: ReadableStream<MoqtObject>

    Continuous stream yielding objects as they are produced

    Methods