Events

public class Events

The class to configure events closures for Call Composite.

  • Closure to execute when error event occurs inside Call Composite.

    Declaration

    Swift

    public var onError: ((CallCompositeError) -> Void)?
  • Closures to execute when participant has joined a call inside Call Composite.

    Declaration

    Swift

    public var onRemoteParticipantJoined: (([CommunicationIdentifier]) -> Void)?
  • Closure to execute when call state changes.

    Declaration

    Swift

    public var onCallStateChanged: ((CallState) -> Void)?
  • Closure to Call Composite dismissed.

    Declaration

    Swift

    public var onDismissed: ((CallCompositeDismissed) -> Void)?