moqtail-ts
    Preparing search index...

    Type Alias SubscribeUpdateOptions

    Narrowing update constraints applied to an existing SUBSCRIBE via MOQtailClient.subscribeUpdate.

    Rules: start can only move forward (increase) and endGroup can only move backward (decrease) narrowing the window.

    await client.subscribeUpdate({
    requestId,
    startLocation: { group: 200n, subgroup: 0n, object: 0n },
    endGroup: 210n,
    priority: 16,
    forward: true
    })
    type SubscribeUpdateOptions = {
        endGroup: bigint;
        forward: boolean;
        parameters?: VersionSpecificParameters;
        priority: number;
        requestId: bigint;
        startLocation: Location;
    }
    Index

    Properties

    endGroup: bigint

    New narrowed end group (inclusive / protocol defined) must be > start group.

    forward: boolean

    Updated direction flag.

    Optional additional VersionSpecificParameters; existing parameters persist if omitted.

    priority: number

    Updated subscriber priority (same constraints as initial subscribe). 0 is highest, 255 is lowest.

    requestId: bigint

    The original SUBSCRIBE request id (bigint) being updated.

    startLocation: Location

    New narrowed Location start.