RTCForge API Reference v1.1.1
    Preparing search index...

    Interface CascadePlanNode

    A single node within a CascadePlan.

    interface CascadePlanNode {
        children: string[];
        id: string;
        parentId?: string;
        role: CascadeRole;
        tier: number;
        viewerSlots: number;
    }
    Index

    Properties

    children: string[]

    Identifiers of this node's child nodes.

    id: string

    Node identifier.

    parentId?: string

    Identifier of this node's parent, or undefined for the origin.

    The node's role in the tree.

    tier: number

    Depth of the node in the tree; the origin sits at tier 0.

    viewerSlots: number

    Number of viewers this node serves directly (non-zero only for leaves).