@@ -4,17 +4,17 @@ import CoreBluetooth
44
55extension CentralManager {
66 public static func unimplemented(
7- state: @escaping ( ) -> CBManagerState = _Internal. _unimplemented ( " state " ) ,
8- authorization: @escaping ( ) -> CBManagerAuthorization = _Internal. _unimplemented ( " authorization " ) ,
9- isScanning: @escaping ( ) -> Bool = _Internal. _unimplemented ( " isScanning " ) ,
10- supportsFeatures: @escaping ( Feature ) -> Bool = _Internal. _unimplemented ( " supportsFeatures " ) ,
11- retrievePeripheralsWithIdentifiers: @escaping ( [ UUID ] ) -> [ Peripheral ] = _Internal. _unimplemented ( " retrievePeripheralsWithIdentifiers " ) ,
12- retrieveConnectedPeripheralsWithServices: @escaping ( [ CBUUID ] ) -> [ Peripheral ] = _Internal. _unimplemented ( " retrieveConnectedPeripheralsWithServices " ) ,
13- scanForPeripheralsWithServices: @escaping ( [ CBUUID ] ? , ScanOptions ? ) -> Void = _Internal. _unimplemented ( " scanForPeripheralsWithServices " ) ,
14- stopScanForPeripherals: @escaping ( ) -> Void = _Internal. _unimplemented ( " stopScanForPeripherals " ) ,
15- connectToPeripheral: @escaping ( Peripheral , PeripheralConnectionOptions ? ) -> Void = _Internal. _unimplemented ( " connectToPeripheral " ) ,
16- cancelPeripheralConnection: @escaping ( Peripheral ) -> Void = _Internal. _unimplemented ( " cancelPeripheralConnection " ) ,
17- registerForConnectionEvents: @escaping ( [ CBConnectionEventMatchingOption : Any ] ? ) -> Void = _Internal. _unimplemented ( " registerForConnectionEvents " ) ,
7+ state: @escaping @ Sendable ( ) -> CBManagerState = _Internal. _unimplemented ( " state " ) ,
8+ authorization: @escaping @ Sendable ( ) -> CBManagerAuthorization = _Internal. _unimplemented ( " authorization " ) ,
9+ isScanning: @escaping @ Sendable ( ) -> Bool = _Internal. _unimplemented ( " isScanning " ) ,
10+ supportsFeatures: @escaping @ Sendable ( Feature ) -> Bool = _Internal. _unimplemented ( " supportsFeatures " ) ,
11+ retrievePeripheralsWithIdentifiers: @escaping @ Sendable ( [ UUID ] ) -> [ Peripheral ] = _Internal. _unimplemented ( " retrievePeripheralsWithIdentifiers " ) ,
12+ retrieveConnectedPeripheralsWithServices: @escaping @ Sendable ( [ CBUUID ] ) -> [ Peripheral ] = _Internal. _unimplemented ( " retrieveConnectedPeripheralsWithServices " ) ,
13+ scanForPeripheralsWithServices: @escaping @ Sendable ( [ CBUUID ] ? , ScanOptions ? ) -> Void = _Internal. _unimplemented ( " scanForPeripheralsWithServices " ) ,
14+ stopScanForPeripherals: @escaping @ Sendable ( ) -> Void = _Internal. _unimplemented ( " stopScanForPeripherals " ) ,
15+ connectToPeripheral: @escaping @ Sendable ( Peripheral , PeripheralConnectionOptions ? ) -> Void = _Internal. _unimplemented ( " connectToPeripheral " ) ,
16+ cancelPeripheralConnection: @escaping @ Sendable ( Peripheral ) -> Void = _Internal. _unimplemented ( " cancelPeripheralConnection " ) ,
17+ registerForConnectionEvents: @escaping @ Sendable ( [ CBConnectionEventMatchingOption : Any ] ? ) -> Void = _Internal. _unimplemented ( " registerForConnectionEvents " ) ,
1818
1919 didUpdateState: AnyPublisher < CBManagerState , Never > = _Internal. _unimplemented ( " didUpdateState " ) ,
2020 willRestoreState: AnyPublisher < [ String : Any ] , Never > = _Internal. _unimplemented ( " willRestoreState " ) ,
0 commit comments