SinchCallClientDelegate

public protocol SinchCallClientDelegate : AnyObject

SinchCallClient delegate protocol

  • client(_:didReceiveIncomingCall:) Default implementation

    Tells the delegate that an incoming call has been received.

    This method is invoked on the queue specified via -[Sinch setCallbackQueue:], which defaults to the main queue.

    To receive further events related to this call, a SinchCallDelegate should be assigned to the call.

    The call has entered the SinchCall.State.initiating state.

    Default Implementation

    Declaration

    Swift

    func client(_ client: SinchCallClient, didReceiveIncomingCall call: SinchCall)

    Parameters

    client

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

    call

    The incoming call.