public interface ConferenceEventsHandler
Modifier and Type | Method and Description |
---|---|
default void |
onConferenceExtendedError(Conference conf,
java.lang.String message)
Notify upon error on Conference
The event is notifying upon an error ocurring on the conference, it provides error message in string format
|
default void |
onConferenceParticipantJoined(Conference conf,
Call call)
Call was added to the conference
Confirmation that the call has joined the conference.
|
default void |
onConferenceParticipantRemoved(Conference conf,
Call call)
Call was removed from the conference
Confirmation that the call has left the conference
Can also happen if a call, part of a conference was moved to another conference.
|
default void onConferenceParticipantJoined(Conference conf, Call call)
conf
- The conferencecall
- The call that has joined itCall
default void onConferenceParticipantRemoved(Conference conf, Call call)
conf
- The conferencecall
- The call that has left itCall
default void onConferenceExtendedError(Conference conf, java.lang.String message)
conf
- The conferencemessage
- The error messageConference