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 = 0Swift
case stopped = 0 -
The client is starting.
Declaration
Objective-C
BCXCallClientStateStartingSwift
case starting = 1 -
The client is running, incoming calls are detected and outgoing calls can be performed.
Declaration
Objective-C
BCXCallClientStateRunningSwift
case running = 2 -
The client is resuming.
Declaration
Objective-C
BCXCallClientStateResumingSwift
case resuming = 3 -
The client is paused and cannot detect incoming calls nor make outgoing calls.
Declaration
Objective-C
BCXCallClientStatePausedSwift
case paused = 4 -
The client is trying to reconnect with Bandyer platform.
Declaration
Objective-C
BCXCallClientStateReconnectingSwift
case reconnecting = 5
View on GitHub
BCXCallClientState Enumeration Reference