CallEvent

public enum CallEvent : Event
  • Fired when contact’s stream is received from P2P call

    Declaration

    Swift

    case streamAdded(Stream)
  • Fired when contact accepted the call

    Declaration

    Swift

    case accepted
  • Fired when contact declined the call

    Declaration

    Swift

    case declined
  • Fired when contact hangs up from P2P call

    Declaration

    Swift

    case hangup
  • Fired when local stream properties changed

    Declaration

    Swift

    case localStreamUpdated(StreamUpdate)
  • Fired when remote stream properties changed

    Declaration

    Swift

    case remoteStreamUpdated(StreamUpdate)
  • Declaration

    Swift

    public static func == (lhs: CallEvent, rhs: CallEvent) -> Bool