RGLBluetoothConnectionState

Objective-C

NS_ENUM(NSInteger, RGLBluetoothConnectionState) {
  RGLBluetoothConnectionStateNone = 0,
  RGLBluetoothConnectionStateSearching,
  RGLBluetoothConnectionStateConnecting,
  RGLBluetoothConnectionStateConnected,
  RGLBluetoothConnectionStateDisconnected
}

Swift

enum BluetoothConnectionState : Int, @unchecked Sendable

Undocumented