Meeting Participants Controller Callback Event.
More...
#include <meeting_participants_ctrl_interface.h>
Meeting Participants Controller Callback Event.
Definition at line 150 of file meeting_participants_ctrl_interface.h.
◆ ~IMeetingParticipantsCtrlEvent()
virtual IMeetingParticipantsCtrlEvent::~IMeetingParticipantsCtrlEvent |
( |
| ) |
|
|
inlinevirtual |
◆ onAllHandsLowered()
virtual void IMeetingParticipantsCtrlEvent::onAllHandsLowered |
( |
| ) |
|
|
pure virtual |
Callback event of the host calls the lower all hands interface, the host/cohost/panelist will receive this callback.
◆ onCoHostChangeNotification()
virtual void IMeetingParticipantsCtrlEvent::onCoHostChangeNotification |
( |
unsigned int |
userId, |
|
|
bool |
isCoHost |
|
) |
| |
|
pure virtual |
Callback event of changing the co-host.
- Parameters
-
userId | Specify the user ID whose status changes. |
isCoHost | TRUE indicates that the specified user is co-host. |
◆ onHostChangeNotification()
virtual void IMeetingParticipantsCtrlEvent::onHostChangeNotification |
( |
unsigned int |
userId | ) |
|
|
pure virtual |
Callback event of notification of the new host.
- Parameters
-
userId | Specify the ID of the new host.
|
◆ onInvalidReclaimHostkey()
virtual void IMeetingParticipantsCtrlEvent::onInvalidReclaimHostkey |
( |
| ) |
|
|
pure virtual |
Callback event of invalid host key.
◆ onLocalRecordingStatusChanged()
virtual void IMeetingParticipantsCtrlEvent::onLocalRecordingStatusChanged |
( |
unsigned int |
user_id, |
|
|
RecordingStatus |
status |
|
) |
| |
|
pure virtual |
Callback event that the status of local recording changes.
- Parameters
-
userId | Specify the user ID whose status changes. |
status | Value of recording status. For more details, see RecordingStatus enum. |
◆ onLowOrRaiseHandStatusChanged()
virtual void IMeetingParticipantsCtrlEvent::onLowOrRaiseHandStatusChanged |
( |
bool |
bLow, |
|
|
unsigned int |
userid |
|
) |
| |
|
pure virtual |
Callback event of changing the state of the hand.
- Parameters
-
bLow | TRUE indicates to put down the hand, FALSE indicates to raise the hand. |
userid | Specify the user ID whose status changes. |
◆ onUserJoin()
virtual void IMeetingParticipantsCtrlEvent::onUserJoin |
( |
IList< unsigned int > * |
lstUserID, |
|
|
const wchar_t * |
strUserList = NULL |
|
) |
| |
|
pure virtual |
Callback event of notification of users who are in the meeting.
- Parameters
-
lstUserID | List of the user ID. |
strUserList | List of user in json format. This function is currently invalid, hereby only for reservations. |
◆ onUserLeft()
virtual void IMeetingParticipantsCtrlEvent::onUserLeft |
( |
IList< unsigned int > * |
lstUserID, |
|
|
const wchar_t * |
strUserList = NULL |
|
) |
| |
|
pure virtual |
Callback event of notification of user who leaves the meeting.
- Parameters
-
lstUserID | List of the user ID who leaves the meeting. |
strUserList | List of the user in json format. This function is currently invalid, hereby only for reservations. |
◆ onUserNameChanged()
virtual void IMeetingParticipantsCtrlEvent::onUserNameChanged |
( |
unsigned int |
userId, |
|
|
const wchar_t * |
userName |
|
) |
| |
|
pure virtual |
Callback event of changing the screen name. this interface be marked as deprecated, then it will be instead by onUserNamesChanged.
- Parameters
-
userId | Specify the user ID whose status changes. |
userName | New screen name displayed. |
◆ onUserNamesChanged()
virtual void IMeetingParticipantsCtrlEvent::onUserNamesChanged |
( |
IList< unsigned int > * |
lstUserID | ) |
|
|
pure virtual |
Callback event of changing the screen name.
- Parameters
-
userId | list Specify the users ID whose status changes. |