SinchCallClientDelegate
public protocol SinchCallClientDelegate : AnyObject
SinchCallClient delegate protocol
-
client(_:Default implementationdidReceiveIncomingCall: ) 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.initiatingstate.See also
Default Implementation
Declaration
Swift
func client(_ client: SinchCallClient, didReceiveIncomingCall call: SinchCall)Parameters
clientThe 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.
callThe incoming call.