CallState

public enum CallState

CallState represents the state of the call

  • NEW

    New call has been created in the client.

    Declaration

    Swift

    case NEW
  • The outbound call is being sent to the server.

    Declaration

    Swift

    case CONNECTING
  • Call is pending to be answered. Someone is attempting to call you.

    Declaration

    Swift

    case RINGING
  • Call is active when two clients are fully connected.

    Declaration

    Swift

    case ACTIVE
  • Call has been held.

    Declaration

    Swift

    case HELD
  • Call has ended.

    Declaration

    Swift

    case DONE