PeerConnectionState

public enum PeerConnectionState : Int, Decodable

Peer connection state returned by the server.

  • new

    New connection.

    Declaration

    Swift

    case new = 1
  • Connecting.

    Declaration

    Swift

    case connecting = 2
  • Connected.

    Declaration

    Swift

    case connected = 3
  • Negotiating connection.

    Declaration

    Swift

    case negotiating = 4
  • Connection established.

    Declaration

    Swift

    case established = 5
  • Connection closed.

    Declaration

    Swift

    case closed = 6