Meeting Class Properties - React Native
getmeetingId()
-
type:
String -
getmeetingId()will returnmeetingId, which is unique id of the meeting where the participant has joined.
getLocalParticipant()
-
type: Participant
-
It will be the instance of Participant class for the local participant(You) who joined the meeting.
getParticipants()
-
type:
Mapof Participant -
Map<String, Participant>- Map<
participantId, Participant>
- Map<
-
It will contain all joined participants in the meeting except the
localParticipant. -
This will be the
Mapwhat will container all participants attached with the key as id of that participant.
- Kotlin
- Java
val remoteParticipantId = "ajf897"
val participant = meeting!!.participants[remoteParticipantId]
String remoteParticipantId = "ajf897";
Participant participant = meeting.getParticipants().get(remoteParticipantId);
pubSub
Learn more about PubSub, here
Got a Question? Ask us on discord

