Options
All
  • Public
  • Public/Protected
  • All
Menu

Class LocalInvitation

The call invitation object created by calling the createLocalInvitation method, and called only by the caller.

noinheritdoc

Hierarchy

Index

Constructors

  • Returns LocalInvitation

Properties

calleeId: string

uid of the callee.

channelId: string

The channel ID set by the caller.

note

To intercommunicate with the legacy Agora Signaling SDK, you MUST set the channel ID. However, even if the callee successfully accepts the call invitation, the Agora RTM SDK does not join the channel of the specified channel ID.

content: string

Call invitation content set by the caller.

note

The maximum length is 8 KB.

response: string

The callee's response to the call invitation.

readonly

State of the outgoing call invitation.

readonly
defaultMaxListeners: number

Methods

  • cancel(): void
  • Allows the caller to cancel a sent call invitation. This method has no asynchronous callbacks. To listen for LocalInvitationState changes, register the event handler in LocalInvitationEvents via the on method.

    Returns void

  • listenerCount<P, T>(event: P): number
  • Type parameters

    • P: "LocalInvitationAccepted" | "LocalInvitationRefused" | "LocalInvitationReceivedByPeer" | "LocalInvitationCanceled" | "LocalInvitationFailure"

    • T

    Parameters

    • event: P

    Returns number

  • listeners<P, T>(event: P): Function[]
  • Type parameters

    • P: "LocalInvitationAccepted" | "LocalInvitationRefused" | "LocalInvitationReceivedByPeer" | "LocalInvitationCanceled" | "LocalInvitationFailure"

    • T

    Parameters

    • event: P

    Returns Function[]

  • Type parameters

    • P: "LocalInvitationAccepted" | "LocalInvitationRefused" | "LocalInvitationReceivedByPeer" | "LocalInvitationCanceled" | "LocalInvitationFailure"

    • T

    Parameters

    • event: P
    • listener: (...args: any[]) => any
        • (...args: any[]): any
        • Parameters

          • Rest ...args: any[]

          Returns any

    Returns LocalInvitation

  • Adds the listener function to the channel for the event named eventName. See the EventEmitter API documentation for other event methods on the RtmChannel instance.

    Type parameters

    • EventName: "LocalInvitationAccepted" | "LocalInvitationRefused" | "LocalInvitationReceivedByPeer" | "LocalInvitationCanceled" | "LocalInvitationFailure"

    Parameters

    Returns LocalInvitation

  • Type parameters

    • P: "LocalInvitationAccepted" | "LocalInvitationRefused" | "LocalInvitationReceivedByPeer" | "LocalInvitationCanceled" | "LocalInvitationFailure"

    • T

    Parameters

    Returns LocalInvitation

  • rawListeners<P, T>(event: P): Function[]
  • Type parameters

    • P: "LocalInvitationAccepted" | "LocalInvitationRefused" | "LocalInvitationReceivedByPeer" | "LocalInvitationCanceled" | "LocalInvitationFailure"

    • T

    Parameters

    • event: P

    Returns Function[]

  • Type parameters

    • P: "LocalInvitationAccepted" | "LocalInvitationRefused" | "LocalInvitationReceivedByPeer" | "LocalInvitationCanceled" | "LocalInvitationFailure"

    • T

    Parameters

    • Optional event: P

    Returns LocalInvitation

  • send(): void
  • Send a call invitation to a specified remote user (callee). This method has no asynchronous callbacks. To listen for LocalInvitationState changes, register the event handler in LocalInvitationEvents via the on method.

    Returns void

Generated using TypeDoc