State

public enum State : Int

State is used to indicate the current state of a conference.

  • Initial state.

    Declaration

    Swift

    case None = 0
  • Conference is now instantiated on local.

    Declaration

    Swift

    case Instantiated = 1
  • One creation request was sent to the server.

    Declaration

    Swift

    case CreationPending = 2
  • Conference was created on the server.

    Declaration

    Swift

    case Created = 3
  • Conference creation failed.

    Declaration

    Swift

    case CreationFailed = 4
  • Wait for conference termination.

    Declaration

    Swift

    case TerminationPending = 5
  • Conference exists on server but not in local.

    Declaration

    Swift

    case Terminated = 6
  • Conference termination failed.

    Declaration

    Swift

    case TerminationFailed = 7
  • Conference was deleted on the server.

    Declaration

    Swift

    case Deleted = 8