|
Meeting SDK for Windows API Reference
|
Meeting q&a callback event. More...
#include <meeting_qa_ctrl_interface.h>
Public Member Functions | |
| virtual | ~IMeetingQAControllerEvent () |
| virtual void | OnQAConnectStatus (QAConnectStatus connectStatus)=0 |
| Callback event of Q&A connecting status. | |
| virtual void | OnAddQuestion (const zchar_t *questionID, bool bSuccess)=0 |
| Callback event of adding question. | |
| virtual void | OnAddAnswer (const zchar_t *answerID, bool bSuccess)=0 |
| Callback event of adding answer. | |
| virtual void | OnQuestionMarkedAsDismissed (const zchar_t *question_id)=0 |
| Callback event of marking question as dismissed. | |
| virtual void | OnReopenQuestion (const zchar_t *question_id)=0 |
| Callback event of reopening question. | |
| virtual void | OnReceiveQuestion (const zchar_t *questionID)=0 |
| Callback event of receiving question. | |
| virtual void | OnReceiveAnswer (const zchar_t *answerID)=0 |
| Callback event of receiving answer. | |
| virtual void | OnUserLivingReply (const zchar_t *questionID)=0 |
| Callback event of user answering live. | |
| virtual void | OnUserEndLiving (const zchar_t *questionID)=0 |
| Callback event of end of user answering live. | |
| virtual void | OnUpvoteQuestion (const zchar_t *question_id, bool order_changed)=0 |
| Callback event of voting up question. | |
| virtual void | OnRevokeUpvoteQuestion (const zchar_t *question_id, bool order_changed)=0 |
| Callback event of revoking voting up question. | |
| virtual void | OnDeleteQuestion (IList< const zchar_t * > *lstQuestionID)=0 |
| Callback event of deleting question(s). | |
| virtual void | OnDeleteAnswer (IList< const zchar_t * > *lstAnswerID)=0 |
| Callback event of deleting answer(s). | |
| virtual void | OnAllowAskQuestionAnonymousStatus (bool bEnabled)=0 |
| Callback event of enabling to ask question anonymously. | |
| virtual void | OnAllowAttendeeViewAllQuestionStatus (bool bEnabled)=0 |
| Callback event of enabling attendee to view all questions. | |
| virtual void | OnAllowAttendeeVoteupQuestionStatus (bool bEnabled)=0 |
| Callback event of enabling attendee to vote up questions. | |
| virtual void | OnAllowAttendeeCommentQuestionStatus (bool bEnabled)=0 |
| Callback event of enabling attendee to comment questions. | |
| virtual void | OnRefreshQAData ()=0 |
| Callback event of refreshing q&a data. | |
| virtual void | onMeetingQAStatusChanged (bool bEnabled)=0 |
| Callback event of meeting QA feature status changes. | |
| virtual void | onAllowAskQuestionStatus (bool bEnabled)=0 |
| Notify host/cohost has changed the status of ask question. | |
Meeting q&a callback event.
Definition at line 196 of file meeting_qa_ctrl_interface.h.
|
inlinevirtual |
Definition at line 199 of file meeting_qa_ctrl_interface.h.
|
pure virtual |
Callback event of adding answer.
| answerID | The answer id. |
| bSuccess | Add answer successfully or not. |
|
pure virtual |
Callback event of adding question.
| questionID | The question id. |
| bSuccess | Add question successfully or not. |
|
pure virtual |
Callback event of enabling to ask question anonymously.
| bEnabled | Enbabled or not. |
|
pure virtual |
Notify host/cohost has changed the status of ask question.
| bEnabled | Can ask question or not. |
|
pure virtual |
Callback event of enabling attendee to comment questions.
| bEnabled | Enbabled or not. |
|
pure virtual |
Callback event of enabling attendee to view all questions.
| bEnabled | Enbabled or not. |
|
pure virtual |
Callback event of enabling attendee to vote up questions.
| bEnabled | Enbabled or not. |
|
pure virtual |
Callback event of deleting answer(s).
| lstAnswerID | The list of answer ids. |
|
pure virtual |
Callback event of deleting question(s).
| lstQuestionID | The list of question ids. |
|
pure virtual |
Callback event of meeting QA feature status changes.
| bEnabled | True means meeting QA feature is on, otherwise not. |
|
pure virtual |
Callback event of Q&A connecting status.
| connectStatus | The value of Q&A connecting status. |
|
pure virtual |
Callback event of marking question as dismissed.
| question_id | The question id. |
|
pure virtual |
Callback event of receiving answer.
| answerID | The answer id. |
|
pure virtual |
Callback event of receiving question.
| questionID | The question id. |
|
pure virtual |
Callback event of refreshing q&a data.
|
pure virtual |
Callback event of reopening question.
| question_id | The question id. |
|
pure virtual |
Callback event of revoking voting up question.
| question_id | The question id. |
| order_changed | The order of the question in question list is changed or not. |
|
pure virtual |
Callback event of voting up question.
| question_id | The question id. |
| order_changed | The order of the question in question list is changed or not. |
|
pure virtual |
Callback event of end of user answering live.
| questionID | The question id. |
|
pure virtual |
Callback event of user answering live.
| questionID | The question id. |