Windows SDK API Reference
Loading...
Searching...
No Matches
IEmojiReactionController Class Referenceabstract

Emoji Reaction controller interface. More...

#include <meeting_emoji_reaction_interface.h>

Public Member Functions

virtual SDKError SetEvent (IEmojiReactionControllerEvent *pEvent)=0
 Configure the meeting emoji reaction controller callback event handler. More...
 
virtual bool IsEmojiReactionEnabled ()=0
 Determine if the reactions feature is enabled in the meeting. More...
 
virtual SDKError SendEmojiReaction (SDKEmojiReactionType type)=0
 Send the reaction. More...
 

Detailed Description

Emoji Reaction controller interface.

Definition at line 44 of file meeting_emoji_reaction_interface.h.

Member Function Documentation

◆ IsEmojiReactionEnabled()

virtual bool IEmojiReactionController::IsEmojiReactionEnabled ( )
pure virtual

Determine if the reactions feature is enabled in the meeting.

◆ SendEmojiReaction()

virtual SDKError IEmojiReactionController::SendEmojiReaction ( SDKEmojiReactionType  type)
pure virtual

Send the reaction.

Parameters
typeSpecify the reaction type to be sent. ///
Returns
If the function succeeds, the return value is SDKErr_Success. Otherwise failed. To get extended error information, see SDKError enum.

◆ SetEvent()

virtual SDKError IEmojiReactionController::SetEvent ( IEmojiReactionControllerEvent pEvent)
pure virtual

Configure the meeting emoji reaction controller callback event handler.

Parameters
pEventAn object pointer to the IEmojiReactionControllerEvent that receives the meeting reaction callback event. For more details, see IEmojiReactionControllerEvent.
Returns
If the function succeeds, the return value is SDKErr_Success. Otherwise failed. To get extended error information, see SDKError enum.
Remarks
The SDK use pEvent to transmit the callback event to the user's application. If the function is not called or failed, the user's application is unabled to retrieve the callback event.