public abstract class ParticipantsListener
extends java.lang.Object
| Constructor and Description |
|---|
ParticipantsListener() |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
onParticipantAdded(ParticipantAddedEvent event)
Participant was added to a conversation.
|
abstract void |
onParticipantRemoved(ParticipantRemovedEvent event)
Participant was removed from a conversation.
|
abstract void |
onParticipantUpdated(ParticipantUpdatedEvent event)
Participant was updated in a a conversation.
|
public abstract void onParticipantAdded(ParticipantAddedEvent event)
event - Participant added event.public abstract void onParticipantUpdated(ParticipantUpdatedEvent event)
event - Participant update event.public abstract void onParticipantRemoved(ParticipantRemovedEvent event)
event - Participant removed event.