Interface LocalInvitationEvents

Event types of the LocalInvitation instance.

Hierarchy

  • LocalInvitationEvents

Properties

LocalInvitationAccepted: ((response: string) => void)

Type declaration

    • (response: string): void
    • Callback to the caller: occurs when the callee accepts the call invitation.

      Parameters

      • response: string

        The response from the callee.

      Returns void

LocalInvitationCanceled: (() => void)

Type declaration

    • (): void
    • Callback to the caller: occurs when the caller cancels a call invitation. This callback notifies the caller that he/she has canceled a call invitation.

      Returns void

LocalInvitationFailure: ((reason: LocalInvitationFailureReason) => void)

Type declaration

LocalInvitationReceivedByPeer: (() => void)

Type declaration

    • (): void
    • Callback to the caller: occurs when the callee receives the call invitation.

      This callback notifies the caller that the callee receives the call invitation.

      Returns void

LocalInvitationRefused: ((response: string) => void)

Type declaration

    • (response: string): void
    • Callback to the caller: occurs when the callee refuses the call invitation.

      Parameters

      • response: string

        The response from the callee.

      Returns void

Generated using TypeDoc