MediaSFU React Native
    Preparing search index...

    Interface VideoCardParameters

    Parameters used by VideoCard to synchronize meeting state and permissions.

    VideoCardParameters

    Session Context:

    interface VideoCardParameters {
        socket: Socket;
        roomName: string;
        coHostResponsibility: CoHostResponsibility[];
        showAlert?: ShowAlert;
        coHost: string;
        participants: Participant[];
        member: string;
        islevel: string;
        audioDecibels: AudioDecibels[];
        getUpdatedAllParams: () => VideoCardParameters;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    socket: Socket

    Socket connection for media control events.

    roomName: string

    Active room identifier.

    coHostResponsibility: CoHostResponsibility[]

    Allowed co-host actions.

    showAlert?: ShowAlert

    Optional alert dispatcher.

    coHost: string

    Current co-host.

    participants: Participant[]

    Roster for participant lookups.

    member: string

    Local member identifier.

    islevel: string

    Privilege level for the local user.

    audioDecibels: AudioDecibels[]

    Live audio intensity readings.

    Helpers:

    getUpdatedAllParams: () => VideoCardParameters

    Refresh callback to pull the latest values.