Interface ActiveParticipantListener
-
- All Superinterfaces:
ParticipantListener
public interface ActiveParticipantListener extends ParticipantListener
Interface that can be used to get feedback and updates from the active conference participant.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonParticipantApplicantSharingStatusChanged(Participant participant)Called to report that a participant's application sharing status has changed.voidonParticipantAudioStatusChanged(Participant participant, ParticipantMediaStatus audioStatus)Called to report that a participant's audio has been changed.voidonParticipantCameraRemoteControlSupportChanged(Participant participant)Called to report that a participant's camera remote control support changed.voidonParticipantConnectionStatusChanged(Participant participant, ParticipantConnectionStatus connectionStatus)Called to report that a participant's conference connection status has changed.voidonParticipantHandLowered(Participant participant)Called to report that a participant's hand is lowered, either by the participant, or by a moderator who acknowledged the participant raising hand.voidonParticipantHandRaised(Participant participant)Called to report that a participant has raised hand.voidonParticipantSetAsLecturer(Participant participant)Called to report that the participant is now a lecturer.voidonParticipantSetAsModerator(Participant participant)Called to report that the participant is now a moderator.voidonParticipantSetAsPresenter(Participant participant)Called to report that the participant is now a presenter.voidonParticipantUnsetAsLecturer(Participant participant)Called to report that the participant is no longer a lecturer.voidonParticipantUnsetAsModerator(Participant participant)Called to report that the participant is no longer a moderator.voidonParticipantUnsetAsPresenter(Participant participant)Called to report that the participant is no longer a presenter.voidonParticipantVideoStatusChanged(Participant participant, ParticipantMediaStatus videoStatus)Called to report that a participant's video has been changed.-
Methods inherited from interface com.avaya.clientservices.call.conference.ParticipantListener
onParticipantMatchedContactsChanged
-
-
-
-
Method Detail
-
onParticipantApplicantSharingStatusChanged
void onParticipantApplicantSharingStatusChanged(Participant participant)
Called to report that a participant's application sharing status has changed.- Parameters:
participant-Participantwhose application sharing status has changed.
-
onParticipantConnectionStatusChanged
void onParticipantConnectionStatusChanged(Participant participant, ParticipantConnectionStatus connectionStatus)
Called to report that a participant's conference connection status has changed. This happens when, for example, the participant who is in the middle of joining the call (either dialing in, or dialed out towards by the conference system) has joined the call.- Parameters:
participant-Participantwhose connection status has changed.connectionStatus- NewParticipantConnectionStatusof the participant.
-
onParticipantSetAsModerator
void onParticipantSetAsModerator(Participant participant)
Called to report that the participant is now a moderator.- Parameters:
participant-Participantwho has been assigned to be a moderator.
-
onParticipantUnsetAsModerator
void onParticipantUnsetAsModerator(Participant participant)
Called to report that the participant is no longer a moderator.- Parameters:
participant-Participantwho is no longer a moderator.
-
onParticipantSetAsLecturer
void onParticipantSetAsLecturer(Participant participant)
Called to report that the participant is now a lecturer.- Parameters:
participant-Participantwho has been assigned to be a lecturer.
-
onParticipantUnsetAsLecturer
void onParticipantUnsetAsLecturer(Participant participant)
Called to report that the participant is no longer a lecturer.- Parameters:
participant-Participantwho is no longer a lecturer.
-
onParticipantSetAsPresenter
void onParticipantSetAsPresenter(Participant participant)
Called to report that the participant is now a presenter.- Parameters:
participant-Participantwho has been assigned to be a presenter.
-
onParticipantUnsetAsPresenter
void onParticipantUnsetAsPresenter(Participant participant)
Called to report that the participant is no longer a presenter.- Parameters:
participant-Participantwho is no longer a presenter.
-
onParticipantVideoStatusChanged
void onParticipantVideoStatusChanged(Participant participant, ParticipantMediaStatus videoStatus)
Called to report that a participant's video has been changed.- Parameters:
participant-Participantwhose video status has changed.videoStatus- New videoParticipantMediaStatusstatus.
-
onParticipantAudioStatusChanged
void onParticipantAudioStatusChanged(Participant participant, ParticipantMediaStatus audioStatus)
Called to report that a participant's audio has been changed.- Parameters:
participant-Participantwhose audio status has changed.audioStatus- New audioParticipantMediaStatusstatus.
-
onParticipantHandRaised
void onParticipantHandRaised(Participant participant)
Called to report that a participant has raised hand. A moderator can lower participant's hand, and unmute the participant to speak.- Parameters:
participant-Participantwho has raised hand during the conference call.
-
onParticipantHandLowered
void onParticipantHandLowered(Participant participant)
Called to report that a participant's hand is lowered, either by the participant, or by a moderator who acknowledged the participant raising hand.- Parameters:
participant-Participantwhose hand is lowered.
-
onParticipantCameraRemoteControlSupportChanged
void onParticipantCameraRemoteControlSupportChanged(Participant participant)
Called to report that a participant's camera remote control support changed.- Parameters:
participant- Participant whose camera remote control support changed.
-
-