GlobalState
public enum GlobalState : Int
Describes the global state of the Core object.
-
State in which we’re in after Core.stop().
Declaration
Swift
case Off = 0 -
Transient state for when we call Core.start()
Declaration
Swift
case Startup = 1 -
Indicates
Corehas been started and is up and running.Declaration
Swift
case On = 2 -
Transient state for when we call 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 -
Corestate after being created by linphone_factory_create_core, generally followed by a call to Core.start()Declaration
Swift
case Ready = 5
GlobalState Enumeration Reference