BDKCallClientState

Objective-C

enum BDKCallClientState : NSInteger {}

Swift

enum CallClientState : Int

An enumeration representing the states a client can be in.

  • The client is stopped and cannot receive nor make calls.

    Declaration

    Objective-C

    BDKCallClientStateStopped = 0

    Swift

    case stopped = 0
  • The client is starting.

    Declaration

    Objective-C

    BDKCallClientStateStarting

    Swift

    case starting = 1
  • The client is running, incoming calls are detected and outgoing calls can be performed.

    Declaration

    Objective-C

    BDKCallClientStateRunning

    Swift

    case running = 2
  • The client is resuming.

    Declaration

    Objective-C

    BDKCallClientStateResuming

    Swift

    case resuming = 3
  • The client is paused and cannot detect incoming calls nor make outgoing calls.

    Declaration

    Objective-C

    BDKCallClientStatePaused

    Swift

    case paused = 4
  • The client is trying to reconnect with Bandyer platform.

    Declaration

    Objective-C

    BDKCallClientStateReconnecting

    Swift

    case reconnecting = 5
  • The client has failed.

    Declaration

    Objective-C

    BDKCallClientStateFailed

    Swift

    case failed = 6