-
public final class RoomEvent.ParticipantAttributesChanged extends RoomEvent
When a participant's attributes are changed, fired for all participants
-
-
Field Summary
Fields Modifier and Type Field Description private final Participantparticipantprivate final Map<String, String>changedAttributesprivate final Map<String, String>oldAttributesprivate final Roomroom
-
Constructor Summary
Constructors Constructor Description RoomEvent.ParticipantAttributesChanged(Room room, Participant participant, Map<String, String> changedAttributes, Map<String, String> oldAttributes)
-
Method Summary
Modifier and Type Method Description final ParticipantgetParticipant()final Map<String, String>getChangedAttributes()The attributes that have changed and their new associated values. final Map<String, String>getOldAttributes()The old attributes prior to change. final RoomgetRoom()-
-
Method Detail
-
getParticipant
final Participant getParticipant()
-
getChangedAttributes
final Map<String, String> getChangedAttributes()
The attributes that have changed and their new associated values.
-
getOldAttributes
final Map<String, String> getOldAttributes()
The old attributes prior to change.
-
-
-
-