-
Notifications
You must be signed in to change notification settings - Fork 3
RoomLeftEvent
Ajša Terko edited this page Jun 26, 2023
·
2 revisions
Getter for the errorCode
field.
-
ErrorCode
- Value of theerrorCode
field containing the information about the status after leaving the room.
func onRoomLeft(_ roomLeftEvent: RoomLeftEvent) {
os_log("You have left the room. Status: %s", roomLeftEvent.errorCode.name)
}
Getter for the totalMediaStats
field.
-
TotalMediaStats
- Value of thetotalMediaStats
field that contains summary of the total media stats after leaving the room.
func onRoomLeft(_ roomLeftEvent: RoomLeftEvent) {
os_log("You have left the room. Total media stats: %s", roomLeftEvent.totalMediaStats)
}