SendBirdCallDelegate

@objc(SBCSendBirdCallDelegate)
public protocol SendBirdCallDelegate : AnyObject

Device-wide delegate for SendBirdCall.

Since

1.0.0
  • Called when incoming calls are received.

    class MyClass: SendBirdCallDelegate {
        func didStartRinging(_ call: DirectCall) {
            call.delegate = self
        }
    }
    

    Since

    1.0.0

    Declaration

    Swift

    func didStartRinging(_ call: DirectCall)

    Parameters

    call

    DirectCall object.