IncomingCallObserver

@available(iOS 12.0, *)
@objc(BDKIncomingCallObserver)
public protocol IncomingCallObserver : NSObjectProtocol

Classes conforming to this protocol represent an incoming call observer.

The call client will notify its observers when an incoming call is received. In order to be notified of incoming calls you should call the CallClient.addIncomingCall(observer:) method on the SDK call client.

  • Invoked when a call client detects a new incoming call.

    Declaration

    Swift

    func callClient(_ client: CallClient, didReceiveIncomingCall call: Call)

    Parameters

    client

    The call client object.

    call

    The incoming call received.