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 Detail

      • onParticipantApplicantSharingStatusChanged

        void onParticipantApplicantSharingStatusChanged​(Participant participant)
        Called to report that a participant's application sharing status has changed.
        Parameters:
        participant - Participant whose 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 - Participant whose connection status has changed.
        connectionStatus - New ParticipantConnectionStatus of the participant.
      • onParticipantSetAsModerator

        void onParticipantSetAsModerator​(Participant participant)
        Called to report that the participant is now a moderator.
        Parameters:
        participant - Participant who 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 - Participant who is no longer a moderator.
      • onParticipantSetAsLecturer

        void onParticipantSetAsLecturer​(Participant participant)
        Called to report that the participant is now a lecturer.
        Parameters:
        participant - Participant who 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 - Participant who is no longer a lecturer.
      • onParticipantSetAsPresenter

        void onParticipantSetAsPresenter​(Participant participant)
        Called to report that the participant is now a presenter.
        Parameters:
        participant - Participant who 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 - Participant who is no longer a presenter.
      • 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 - Participant who 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 - Participant whose 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.