MediaSFU Shared
    Preparing search index...

    Interface DisconnectSendTransportVideoParameters

    interface DisconnectSendTransportVideoParameters {
        videoProducer: Producer<AppData> | null;
        localVideoProducer?: Producer<AppData> | null;
        socket: Socket;
        localSocket?: Socket<DefaultEventsMap, DefaultEventsMap>;
        islevel: string;
        roomName: string;
        lock_screen: boolean;
        updateMainWindow: boolean;
        updateUpdateMainWindow: (state: boolean) => void;
        updateVideoProducer: (producer: Producer<AppData> | null) => void;
        updateLocalVideoProducer?: (producer: Producer<AppData> | null) => void;
        reorderStreams: ReorderStreamsType;
        allVideoStreams: (Participant | Stream)[];
        participants: Participant[];
        oldAllStreams: (Participant | Stream)[];
        screenId?: string;
        adminVidID?: string;
        newLimitedStreams: (Participant | Stream)[];
        newLimitedStreamsIDs: string[];
        activeSounds: string[];
        screenShareIDStream?: string;
        screenShareNameStream?: string;
        adminIDStream?: string;
        adminNameStream?: string;
        updateNewLimitedStreams: (streams: (Participant | Stream)[]) => void;
        updateNewLimitedStreamsIDs: (ids: string[]) => void;
        updateActiveSounds: (sounds: string[]) => void;
        updateScreenShareIDStream: (id: string) => void;
        updateScreenShareNameStream: (name: string) => void;
        updateAdminIDStream: (id: string) => void;
        updateAdminNameStream: (name: string) => void;
        updateYouYouStream: (streams: (Participant | Stream)[]) => void;
        changeVids: ChangeVidsInvoker;
        getUpdatedAllParams: () => ReorderStreamsParameters<
            Stream,
            Participant,
            unknown,
        >;
        [key: string]: any;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: any
    Index

    Properties

    videoProducer: Producer<AppData> | null
    localVideoProducer?: Producer<AppData> | null
    socket: Socket
    localSocket?: Socket<DefaultEventsMap, DefaultEventsMap>
    islevel: string
    roomName: string
    lock_screen: boolean
    updateMainWindow: boolean
    updateUpdateMainWindow: (state: boolean) => void
    updateVideoProducer: (producer: Producer<AppData> | null) => void
    updateLocalVideoProducer?: (producer: Producer<AppData> | null) => void
    reorderStreams: ReorderStreamsType
    allVideoStreams: (Participant | Stream)[]
    participants: Participant[]
    oldAllStreams: (Participant | Stream)[]
    screenId?: string
    adminVidID?: string
    newLimitedStreams: (Participant | Stream)[]
    newLimitedStreamsIDs: string[]
    activeSounds: string[]
    screenShareIDStream?: string
    screenShareNameStream?: string
    adminIDStream?: string
    adminNameStream?: string
    updateNewLimitedStreams: (streams: (Participant | Stream)[]) => void
    updateNewLimitedStreamsIDs: (ids: string[]) => void
    updateActiveSounds: (sounds: string[]) => void
    updateScreenShareIDStream: (id: string) => void
    updateScreenShareNameStream: (name: string) => void
    updateAdminIDStream: (id: string) => void
    updateAdminNameStream: (name: string) => void
    updateYouYouStream: (streams: (Participant | Stream)[]) => void
    changeVids: ChangeVidsInvoker
    getUpdatedAllParams: () => ReorderStreamsParameters<
        Stream,
        Participant,
        unknown,
    >