IIncomingInvitationListener
The IIncomingInvitationListener model gathers methods that can be called after receiving conference invitations or information about canceled conferences.
Available in the package com.voxeet.sdk.push.center.invitation.IIncomingInvitationListener.
Methods
onInvitation
▸ onInvitation(@NonNull context
: Context, @NonNull invitationBundle
: InvitationBundle): void
A method called by the SDK when the incoming invitation is received.
Parameters
Name | Type | Description |
---|---|---|
context | Context | non null valid application context. |
invitationBundle | InvitationBundle | non null underlying invitation. |
onInvitationCanceled
▸ onInvitationCanceled(@NonNull context
: Context, @NonNull conferenceId
: String): void
A method called by the SDK when an invitation is canceled.
Parameters
Name | Type | Description |
---|---|---|
context | Context | non null valid application context. |
conferenceId | String | non null ID of the cancelled conference. |
Updated about 1 year ago