VoiceCallState

public enum VoiceCallState : CaseIterable

Call state

  • call is incoming

    Declaration

    Swift

    case incoming
  • call is being placed outbound

    Declaration

    Swift

    case outgoing
  • call is being placed outbound, and far end is ringing

    Declaration

    Swift

    case ringing
  • call is connected

    Declaration

    Swift

    case connected
  • we have placed the peer on hold

    Declaration

    Swift

    case hold
  • the call is moving from a hold/incoming state to a connected state

    Declaration

    Swift

    case connectPending
  • the call is moving from a connected state to a hold state

    Declaration

    Swift

    case holdPending
  • the call has disconnected

    Declaration

    Swift

    case disconnected
  • the outbound call attempt has failed

    Declaration

    Swift

    case failed
  • unknown state

    Declaration

    Swift

    case unknown