GlobalState

public enum GlobalState : Int

LinphoneGlobalState describes the global state of the Core object.

  • Off

    State in which we’re in after {@link Core#stop}.

    Declaration

    Swift

    case Off = 0
  • Transient state for when we call {@link Core#start}

    Declaration

    Swift

    case Startup = 1
  • On

    Indicates Core has been started and is up and running.

    Declaration

    Swift

    case On = 2
  • Transient state for when we call {@link Core#stop}

    Declaration

    Swift

    case Shutdown = 3
  • Transient state between Startup and On if there is a remote provisionning URI configured.

    Declaration

    Swift

    case Configuring = 4
  • Core state after being created by linphone_factory_create_core, generally followed by a call to {@link Core#start}

    Declaration

    Swift

    case Ready = 5