BCXCallClientState
Objective-C
enum BCXCallClientState {}
Swift
enum BCXCallClientState : Int
An enumeration representing the states a client can be in.
-
The client is stopped and cannot receive nor make calls.
Declaration
Objective-C
BCXCallClientStateStopped = 0
Swift
case stopped = 0
-
The client is starting.
Declaration
Objective-C
BCXCallClientStateStarting
Swift
case starting = 1
-
The client is running, incoming calls are detected and outgoing calls can be performed.
Declaration
Objective-C
BCXCallClientStateRunning
Swift
case running = 2
-
The client is resuming.
Declaration
Objective-C
BCXCallClientStateResuming
Swift
case resuming = 3
-
The client is paused and cannot detect incoming calls nor make outgoing calls.
Declaration
Objective-C
BCXCallClientStatePaused
Swift
case paused = 4
-
The client is trying to reconnect with Bandyer platform.
Declaration
Objective-C
BCXCallClientStateReconnecting
Swift
case reconnecting = 5