Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
us.zoom.sdk.IInvitationMeetingHandler Interface Reference

Process after the user receives an invitation from another user to join a meeting. More...

Public Member Functions

String getSenderId ()
 Get the inviter's ID.
 
String getSenderName ()
 Get the inviter name.
 
long getMeetingNumber ()
 Get the invite meeting number.
 
boolean isChannelInvitation ()
 Determine whether this invitation is from channel.
 
String getChannelName ()
 Get the channel name.
 
long getChannelMemberCount ()
 Get the channel member count.
 
MobileRTCSDKError accept ()
 Instance to accept the invitation, join meeting and finally self-destroy.
 
MobileRTCSDKError decline ()
 Instance to decline the invitation, decline and finally self-destroy.
 
MobileRTCSDKError timeOut ()
 Instance the invitation is timeout, timeout and finally self-destroy.
 
void setScreenName (String screenName)
 Set the display name in meeting.
 

Detailed Description

Process after the user receives an invitation from another user to join a meeting.

Definition at line 6 of file IInvitationMeetingHandler.java.

Member Function Documentation

◆ accept()

MobileRTCSDKError us.zoom.sdk.IInvitationMeetingHandler.accept ( )

Instance to accept the invitation, join meeting and finally self-destroy.

Returns
If the function succeeds, it will return SDKERR_SUCCESS. Otherwise failed.

◆ decline()

MobileRTCSDKError us.zoom.sdk.IInvitationMeetingHandler.decline ( )

Instance to decline the invitation, decline and finally self-destroy.

Returns
If the function succeeds, it will return SDKERR_SUCCESS. Otherwise failed.

◆ getChannelMemberCount()

long us.zoom.sdk.IInvitationMeetingHandler.getChannelMemberCount ( )

Get the channel member count.

Returns
The return value is the channel name of this invitation.

◆ getChannelName()

String us.zoom.sdk.IInvitationMeetingHandler.getChannelName ( )

Get the channel name.

Returns
The return value is the channel name.

◆ getMeetingNumber()

long us.zoom.sdk.IInvitationMeetingHandler.getMeetingNumber ( )

Get the invite meeting number.

Returns
The return value is the invite meeting number.

◆ getSenderId()

String us.zoom.sdk.IInvitationMeetingHandler.getSenderId ( )

Get the inviter's ID.

Returns
The return value is the inviter's ID.

◆ getSenderName()

String us.zoom.sdk.IInvitationMeetingHandler.getSenderName ( )

Get the inviter name.

Returns
The return value is the inviter name.

◆ isChannelInvitation()

boolean us.zoom.sdk.IInvitationMeetingHandler.isChannelInvitation ( )

Determine whether this invitation is from channel.

Returns
true indicates that this invitation is from channel.

◆ setScreenName()

void us.zoom.sdk.IInvitationMeetingHandler.setScreenName ( String screenName)

Set the display name in meeting.

Parameters
screenNameThe display name in meeting.

◆ timeOut()

MobileRTCSDKError us.zoom.sdk.IInvitationMeetingHandler.timeOut ( )

Instance the invitation is timeout, timeout and finally self-destroy.

Returns
If the function succeeds, it will return SDKERR_SUCCESS. Otherwise failed.