rmapi-js
    Preparing search index...

    Interface SceneTreeBlock

    the 0x01 scene tree block — a node/parent edge

    interface SceneTreeBlock {
        currentVersion: number;
        extraData: Uint8Array;
        isUpdate: boolean;
        minVersion: number;
        nodeId: CrdtId;
        parentId: CrdtId;
        treeId: CrdtId;
        type: "sceneTree";
    }

    Hierarchy

    • BlockCommon
      • SceneTreeBlock
    Index

    Properties

    currentVersion: number

    the block's current version (selects the point encoding for lines)

    extraData: Uint8Array

    the unread tail of the block, preserved for round-tripping

    isUpdate: boolean

    whether this is an update to an existing entry

    minVersion: number

    the block's minimum reader version

    nodeId: CrdtId

    the node this entry describes

    parentId: CrdtId

    the parent node's crdt id

    treeId: CrdtId

    the tree entry's crdt id

    type: "sceneTree"

    the block-type discriminant