sinch-rtc
    Preparing search index...

    Interface CallClientListener

    Tells the listener that an incoming call has been received.

    interface CallClientListener {
        onIncomingCall(callClient: CallClient, call: Call): void;
    }
    Index

    Methods

    • Parameters

      • callClient: CallClient

        The callClient informing the listener that an incoming call was received. The listener of the incoming call object should be set by the implementation of this method.

      • call: Call

        The incoming call.

      Returns void