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

Handler for processing after the user receives an invitation from another user to join a meeting. More...

Public Member Functions

String getSenderId ()
 Gets the inviter's ID.
String getSenderName ()
 Gets the inviter's name.
long getMeetingNumber ()
 Gets the invite meeting number.
boolean isChannelInvitation ()
 Determines whether this invitation is from a channel.
String getChannelName ()
 Gets the channel name.
long getChannelMemberCount ()
 Gets the channel member count.
MobileRTCSDKError accept ()
 Accepts the invitation, joins the meeting, and finally self-destroys.
MobileRTCSDKError decline ()
 Declines the invitation and finally self-destroys.
MobileRTCSDKError timeOut ()
 Handles the invitation timeout and finally self-destroys.
void setScreenName (String screenName)
 Sets the display name in the meeting.

Detailed Description

Handler for processing 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 ( )

Accepts the invitation, joins the meeting, and finally self-destroys.

Returns
If the function succeeds, it returns MobileRTCSDKError.SDKERR_SUCCESS. Otherwise, this function returns an error.

◆ decline()

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

Declines the invitation and finally self-destroys.

Returns
If the function succeeds, it returns MobileRTCSDKError.SDKERR_SUCCESS. Otherwise, this function returns an error.

◆ getChannelMemberCount()

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

Gets the channel member count.

Returns
If the function succeeds, it returns the channel member count. Otherwise, this function fails and returns 0.

◆ getChannelName()

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

Gets the channel name.

Returns
If the function succeeds, it returns the channel name. Otherwise, this function fails and returns null.

◆ getMeetingNumber()

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

Gets the invite meeting number.

Returns
If the function succeeds, it returns the invite meeting number. Otherwise, this function fails and returns 0.

◆ getSenderId()

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

Gets the inviter's ID.

Returns
If the function succeeds, it returns the inviter's ID. Otherwise, this function fails and returns null.

◆ getSenderName()

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

Gets the inviter's name.

Returns
If the function succeeds, it returns the inviter's name. Otherwise, this function fails and returns null.

◆ isChannelInvitation()

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

Determines whether this invitation is from a channel.

Returns
true if this invitation is from a channel. Otherwise, false.

◆ setScreenName()

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

Sets the display name in the meeting.

Parameters
screenNameThe display name in the meeting.

◆ timeOut()

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

Handles the invitation timeout and finally self-destroys.

Returns
If the function succeeds, it returns MobileRTCSDKError.SDKERR_SUCCESS. Otherwise, this function returns an error.