Options
All
  • Public
  • Public/Protected
  • All
Menu

Class RemoteInvitation

The call invitation object created by the SDK and called by the callee.

noinheritdoc

Hierarchy

Index

Constructors

  • Returns RemoteInvitation

Properties

callerId: string

uid of the caller.

readonly
channelId: string

Allows the callee to get the channel ID.

readonly
content: string

The call invitation content set by the caller.

readonly
note

The maximum length is 8 KB.

response: string

Response to the incoming call invitation.

note

The maximum length is 8 KB.

States of the incoming call invitation. See: RemoteInvitationState .

readonly
defaultMaxListeners: number

Methods

  • accept(): void
  • Allows the callee to accept an incoming call invitation. This method has no asynchronous callbacks. To listen for RemoteInvitationState changes, register the event handler in RemoteInvitationEvents via the on method.

    Returns void

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

    • P: "RemoteInvitationCanceled" | "RemoteInvitationRefused" | "RemoteInvitationAccepted" | "RemoteInvitationFailure"

    • T

    Parameters

    • event: P

    Returns number

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

    • P: "RemoteInvitationCanceled" | "RemoteInvitationRefused" | "RemoteInvitationAccepted" | "RemoteInvitationFailure"

    • T

    Parameters

    • event: P

    Returns Function[]

  • Type parameters

    • P: "RemoteInvitationCanceled" | "RemoteInvitationRefused" | "RemoteInvitationAccepted" | "RemoteInvitationFailure"

    • T

    Parameters

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

          • Rest ...args: any[]

          Returns any

    Returns RemoteInvitation

  • 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: "RemoteInvitationCanceled" | "RemoteInvitationRefused" | "RemoteInvitationAccepted" | "RemoteInvitationFailure"

    Parameters

    Returns RemoteInvitation

  • Type parameters

    • P: "RemoteInvitationCanceled" | "RemoteInvitationRefused" | "RemoteInvitationAccepted" | "RemoteInvitationFailure"

    • T

    Parameters

    Returns RemoteInvitation

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

    • P: "RemoteInvitationCanceled" | "RemoteInvitationRefused" | "RemoteInvitationAccepted" | "RemoteInvitationFailure"

    • T

    Parameters

    • event: P

    Returns Function[]

  • refuse(): void
  • Allows the callee to decline an incoming call invitation. This method has no asynchronous callbacks. To listen for RemoteInvitationState changes, register the event handler in RemoteInvitationEvents via the on method.

    Returns void

  • Type parameters

    • P: "RemoteInvitationCanceled" | "RemoteInvitationRefused" | "RemoteInvitationAccepted" | "RemoteInvitationFailure"

    • T

    Parameters

    • Optional event: P

    Returns RemoteInvitation

Generated using TypeDoc