Member Junction
    Preparing search index...

    The live floor state of a room, returned by MultiAgentRoomCoordinator.GetRoomState for observability and tests.

    interface RoomFloorState {
        AgentSessionIds: string[];
        FacilitatorAgentSessionId: string;
        FloorHeldSinceMs: number;
        FloorHolderAgentSessionId: string;
        RoomId: string;
    }
    Index

    Properties

    AgentSessionIds: string[]

    The agent session ids currently in the room.

    FacilitatorAgentSessionId: string

    The facilitator agent session id, when one is designated; otherwise null.

    FloorHeldSinceMs: number

    Epoch-ms the current floor holder took the floor, or null when the floor is free.

    FloorHolderAgentSessionId: string

    The agent session id currently holding the floor (speaking), or null when the floor is free.

    RoomId: string

    The room's external id (the shared external connection id / ConversationID all agents key on).