BluetoothError
public enum BluetoothError : Error
extension BluetoothError: CustomStringConvertible
extension BluetoothError: Equatable
Bluetooth error which can be emitted by RxBluetoothKit created observables.
-
Emitted when the object that is the source of Observable was destroyed and event was emitted nevertheless. To mitigate it dispose all of your subscriptions before deinitializing object that created Observables that subscriptions are made to.
Declaration
Swift
case destroyed
-
Undocumented
Declaration
Swift
case scanInProgress
-
Undocumented
Declaration
Swift
case advertisingInProgress
-
Undocumented
Declaration
Swift
case advertisingStartFailed(Error)
-
Undocumented
Declaration
Swift
case bluetoothUnsupported
-
Undocumented
Declaration
Swift
case bluetoothUnauthorized
-
Undocumented
Declaration
Swift
case bluetoothPoweredOff
-
Undocumented
Declaration
Swift
case bluetoothInUnknownState
-
Undocumented
Declaration
Swift
case bluetoothResetting
-
Undocumented
Declaration
Swift
case peripheralIsAlreadyObservingConnection(Peripheral)
-
Undocumented
Declaration
Swift
case peripheralIsConnectingOrAlreadyConnected(Peripheral)
-
Undocumented
Declaration
Swift
case peripheralConnectionFailed(Peripheral, Error?)
-
Undocumented
Declaration
Swift
case peripheralDisconnected(Peripheral, Error?)
-
Undocumented
Declaration
Swift
case peripheralRSSIReadFailed(Peripheral, Error?)
-
Undocumented
Declaration
Swift
case servicesDiscoveryFailed(Peripheral, Error?)
-
Undocumented
Declaration
Swift
case includedServicesDiscoveryFailed(Peripheral, Error?)
-
Undocumented
Declaration
Swift
case addingServiceFailed(CBService, Error?)
-
Undocumented
Declaration
Swift
case characteristicsDiscoveryFailed(Service, Error?)
-
Undocumented
Declaration
Swift
case characteristicWriteFailed(Characteristic, Error?)
-
Undocumented
Declaration
Swift
case characteristicReadFailed(Characteristic, Error?)
-
Undocumented
Declaration
Swift
case characteristicNotifyChangeFailed(Characteristic, Error?)
-
Undocumented
Declaration
Swift
case characteristicSetNotifyValueFailed(Characteristic, Error?)
-
Undocumented
Declaration
Swift
case descriptorsDiscoveryFailed(Characteristic, Error?)
-
Undocumented
Declaration
Swift
case descriptorWriteFailed(Descriptor, Error?)
-
Undocumented
Declaration
Swift
case descriptorReadFailed(Descriptor, Error?)
-
Undocumented
Declaration
Swift
case openingL2CAPChannelFailed(Peripheral, Error?)
-
Undocumented
Declaration
Swift
case publishingL2CAPChannelFailed(CBL2CAPPSM, Error?)
-
Undocumented
Declaration
Swift
case unknownWriteType
-
Human readable description of bluetooth error
Declaration
Swift
public var description: String { get }