-
Notifications
You must be signed in to change notification settings - Fork 3
RoomRejoinedEvent
Adnan Mujagić edited this page Sep 21, 2023
·
1 revision
Getter for the id
field.
-
String
- Value of theid
field representing a unique identifier of the rejoined room.
func onRoomRejoined(_ roomRejoinedEvent: RoomRejoinedEvent) {
os_log("You have successfully rejoined the room. Room id is: %d", roomRejoinedEvent.id)
}
Getter for the name
field.
-
String
- Value of thename
field representing the name of the rejoined room.
func onRoomRejoined(_ roomRejoinedEvent: RoomRejoinedEvent) {
os_log("You have successfully rejoined the room. Room name is: %d", roomRejoinedEvent.name)
}
Getter for the participants
field.
-
[Participant]
- Value of theparticipants
field representing a list of participants already present in the rejoined room call.
func onRoomRejoined(_ roomRejoinedEvent: RoomJoinedEvent) {
os_log("You have successfully rejoined the room. Number of participants is: %d", roomJoinedEvent.participants.count)
}